diff options
| author | robert-hh <robert@hammelrath.com> | 2025-01-17 09:40:59 +0100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2025-03-25 12:38:42 +1100 |
| commit | d8edae040fb194c95e9569a44968d4c3858e0ac0 (patch) | |
| tree | 303e92d0bd3888b085363c7065816fcd5dcd97f9 | |
| parent | 58f1ade318ecd72def23e9169a7a25d65d7967fb (diff) | |
mimxrt/mpconfigport: Enable support for exFAT.
There is plenty of room in the MIMXRT board flash, so it can be enabled.
Tested with:
- MIMXRT1176_EVK
- MIMXRT1061 (Teensy 4.1)
- MIMXRT1010 (Olimex RT1010)
Signed-off-by: robert-hh <robert@hammelrath.com>
| -rw-r--r-- | ports/mimxrt/mpconfigport.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ports/mimxrt/mpconfigport.h b/ports/mimxrt/mpconfigport.h index b9fb87e05..728354239 100644 --- a/ports/mimxrt/mpconfigport.h +++ b/ports/mimxrt/mpconfigport.h @@ -125,6 +125,7 @@ uint32_t trng_random_u32(void); #define MICROPY_FATFS_RPATH (2) #define MICROPY_FATFS_MULTI_PARTITION (1) #define MICROPY_FATFS_MAX_SS (4096) +#define MICROPY_FATFS_EXFAT (1) #ifndef MICROPY_PY_NETWORK #define MICROPY_PY_NETWORK (1) |
