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>
9 lines
350 B
C
9 lines
350 B
C
#define MICROPY_HW_BOARD_NAME "ESP32S2 module"
|
|
#define MICROPY_HW_MCU_NAME "ESP32S2"
|
|
|
|
#define MICROPY_PY_BLUETOOTH (0)
|
|
#define MICROPY_HW_ENABLE_SDCARD (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)
|