Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
19945: boards/esp32-wt32-sc01-plus: fix I2C driver selection in Kconfig r=MrKevinWeiss a=gschorcht

### Contribution description

This PR fixes the `Kconfig` mismatch for the I2C peripheral driver selection for the `esp32s3-wt32-sc01-plus` board.

### Testing procedure

```
python3 dist/tools/compile_test/compile_like_murdock.py -a tests/periph/i2c -b esp32s3-wt32-sc01-plus
```
fails w/o this PR
```
tests/periph/i2c               esp32s3-wt32-sc01-plus         FAIL: Kconfig module or pkg mismatch
```
and should succeed with this PR
```
tests/periph/i2c               esp32s3-wt32-sc01-plus         PASS
```

### Issues/PRs references


Co-authored-by: Gunar Schorcht <[email protected]>
  • Loading branch information
bors[bot] and gschorcht authored Sep 26, 2023
2 parents 33d1fd2 + 7a94c74 commit 4669ee6
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions boards/esp32s3-wt32-sc01-plus/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,8 @@ choice STDIO_IMPLEMENTATION
default MODULE_STDIO_USB_SERIAL_JTAG
endchoice

choice ESP32_I2C_IMPLEMENTATION
default MODULE_ESP_I2C_HW
endchoice

source "$(RIOTBOARD)/common/esp32s3/Kconfig"

0 comments on commit 4669ee6

Please sign in to comment.