summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJimisola Laursen <jimisola@jimisola.com>2025-07-09 10:07:02 +0200
committerDamien George <damien@micropython.org>2025-08-29 14:00:30 +1000
commit704c70c5bb655afecec4d54537eb1489e689672c (patch)
tree30c1c6f62ae337b594ed33b630eddd531d0eed11
parent9a9cc794222e6791d3d615aee4e32a06c5aeb1be (diff)
esp32/boards: Enable I2S for ESP32_GENERIC_C6 and other C6 boards.
I2S works on the ESP32-C6, and it now has enough space to fit. Signed-off-by: Jimisola Laursen <jimisola@jimisola.com> Signed-off-by: Damien George <damien@micropython.org>
-rw-r--r--ports/esp32/boards/ESP32_GENERIC_C6/mpconfigboard.h2
-rw-r--r--ports/esp32/boards/M5STACK_NANOC6/mpconfigboard.h2
-rw-r--r--ports/esp32/boards/UM_TINYC6/mpconfigboard.h2
3 files changed, 0 insertions, 6 deletions
diff --git a/ports/esp32/boards/ESP32_GENERIC_C6/mpconfigboard.h b/ports/esp32/boards/ESP32_GENERIC_C6/mpconfigboard.h
index d6cc9a6f6..712e1fca1 100644
--- a/ports/esp32/boards/ESP32_GENERIC_C6/mpconfigboard.h
+++ b/ports/esp32/boards/ESP32_GENERIC_C6/mpconfigboard.h
@@ -3,7 +3,5 @@
#define MICROPY_HW_BOARD_NAME "ESP32C6 module"
#define MICROPY_HW_MCU_NAME "ESP32C6"
-#define MICROPY_PY_MACHINE_I2S (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)
diff --git a/ports/esp32/boards/M5STACK_NANOC6/mpconfigboard.h b/ports/esp32/boards/M5STACK_NANOC6/mpconfigboard.h
index 656ec0bc6..16ddc1e51 100644
--- a/ports/esp32/boards/M5STACK_NANOC6/mpconfigboard.h
+++ b/ports/esp32/boards/M5STACK_NANOC6/mpconfigboard.h
@@ -1,7 +1,5 @@
#define MICROPY_HW_BOARD_NAME "M5Stack NanoC6"
#define MICROPY_HW_MCU_NAME "ESP32C6"
-#define MICROPY_PY_MACHINE_I2S (0)
-
#define MICROPY_HW_I2C0_SCL (1)
#define MICROPY_HW_I2C0_SDA (2)
diff --git a/ports/esp32/boards/UM_TINYC6/mpconfigboard.h b/ports/esp32/boards/UM_TINYC6/mpconfigboard.h
index 09392d555..131116e9f 100644
--- a/ports/esp32/boards/UM_TINYC6/mpconfigboard.h
+++ b/ports/esp32/boards/UM_TINYC6/mpconfigboard.h
@@ -1,8 +1,6 @@
#define MICROPY_HW_BOARD_NAME "Unexpected Maker TinyC6"
#define MICROPY_HW_MCU_NAME "ESP32C6"
-#define MICROPY_PY_MACHINE_I2S (0)
-
#define MICROPY_HW_I2C0_SCL (7)
#define MICROPY_HW_I2C0_SDA (6)