diff options
| author | Damien George <damien@micropython.org> | 2023-12-04 22:17:18 +1100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2023-12-04 22:17:18 +1100 |
| commit | d422b68d1099fb88c8bcd6a78bbd66924422112c (patch) | |
| tree | 96fca00b51644e0179cfb881c17b70f5f430838c | |
| parent | 30b0ee34d3a7cf6f967387e783268c8a939e04c8 (diff) | |
nrf/mpconfigport: Enable MICROPY_PY_MACHINE_BOOTLOADER.
This should have been enabled in 48b5a7b06079f0d0aa4780016f015ff023875680
but was missed.
Signed-off-by: Damien George <damien@micropython.org>
| -rw-r--r-- | ports/nrf/mpconfigport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/nrf/mpconfigport.h b/ports/nrf/mpconfigport.h index 3ab1e0814..f3c08059a 100644 --- a/ports/nrf/mpconfigport.h +++ b/ports/nrf/mpconfigport.h @@ -175,6 +175,7 @@ #define MICROPY_PY_MACHINE (1) #define MICROPY_PY_MACHINE_INCLUDEFILE "ports/nrf/modules/machine/modmachine.c" #define MICROPY_PY_MACHINE_BARE_METAL_FUNCS (1) +#define MICROPY_PY_MACHINE_BOOTLOADER (1) #define MICROPY_PY_MACHINE_PULSE (0) #define MICROPY_PY_MACHINE_SOFTI2C (MICROPY_PY_MACHINE_I2C) |
