fe9eaf12f3
Some S2/S3 modules don't use the native USB interface but instead have an external USB-UART. To make the GENERIC_S3/S3 firmware work on these boards the UART REPL is enabled in addition to the native USB CDC REPL. Fixes issues #8418 and #8524. Signed-off-by: Damien George <damien@micropython.org>
11 lines
399 B
C
11 lines
399 B
C
#define MICROPY_HW_BOARD_NAME "ESP32S3 module"
|
|
#define MICROPY_HW_MCU_NAME "ESP32S3"
|
|
|
|
#define MICROPY_PY_MACHINE_DAC (0)
|
|
|
|
// Enable UART REPL for modules that have an external USB-UART and don't use native USB.
|
|
#define MICROPY_HW_ENABLE_UART_REPL (1)
|
|
|
|
#define MICROPY_HW_I2C0_SCL (9)
|
|
#define MICROPY_HW_I2C0_SDA (8)
|