8000 mimxrt/boards: Fix naming of SD-card config option. · micropython/micropython@51ca23e · GitHub
[go: up one dir, main page]

Skip to content

Commit 51ca23e

Browse files
robert-hhdpgeorge
authored andcommitted
mimxrt/boards: Fix naming of SD-card config option.
Commit 552b0bb did not define MICROPY_PY_MACHINE_SDCARD properly, and thus building the firmware failed. Signed-off-by: robert-hh <robert@hammelrath.com>
1 parent abb4469 commit 51ca23e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ports/mimxrt/boards/ADAFRUIT_METRO_M7/mpconfigboard.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#define MICROPY_HW_LED_OFF(pin) (mp_hal_pin_low(pin))
88

99
#define MICROPY_HW_NUM_PIN_IRQS (2 * 32)
10-
#define MICROPY_HW_ENABLE_SDCARD (0)
10+
#define MICROPY_PY_MACHINE_SDCARD (0)
1111

1212
// Define mapping logical UART # to hardware UART #
1313
// LPUART1 on USB_DBG -> 0

ports/mimxrt/boards/MIMXRT1010_EVK/mpconfigboard.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#define MICROPY_HW_LED_OFF(pin) (mp_hal_pin_low(pin))
88

99
#define MICROPY_HW_NUM_PIN_IRQS (2 * 32)
10-
#define MICROPY_HW_ENABLE_SDCARD (0)
10+
#define MICROPY_PY_MACHINE_SDCARD (0)
1111

1212
// Define mapping logical UART # to hardware UART #
1313
// LPUART1 on USB_DBG -> 0

0 commit comments

Comments
 (0)
0