mirror of
https://github.com/portapack-mayhem/mayhem-firmware.git
synced 2024-12-14 12:08:40 +00:00
f7bfde73b6
Lots of re-plumbing to make this work, including a bunch of Unicode stuff now in the binary. Bloat City, I'm sure. TODO: FatFs using unsigned (uint16_t) for UTF16 representation is kinda inconvenient. Lots of reinterpret_cast<>().
12 lines
314 B
CMake
12 lines
314 B
CMake
# FATFS files.
|
|
set(FATFSSRC
|
|
${CHIBIOS_PORTAPACK}/os/various/fatfs_bindings/fatfs_diskio.c
|
|
${CHIBIOS_PORTAPACK}/os/various/fatfs_bindings/fatfs_syscall.c
|
|
${CHIBIOS_PORTAPACK}/ext/fatfs/src/ff.c
|
|
${CHIBIOS_PORTAPACK}/ext/fatfs/src/option/unicode.c
|
|
)
|
|
|
|
set(FATFSINC
|
|
${CHIBIOS_PORTAPACK}/ext/fatfs/src
|
|
)
|