mirror of
https://github.com/paparazzi/paparazzi.git
synced 2026-05-09 22:49:53 +08:00
6e6e2f11ce
* [sdlog] update chibios and fatfs, fix bug due to DMA/cache issue - sdlog on F7 was not using a DMA compatible ram for log thread - update chibios for latest fix in 20.3.x branch - update fatfs to v0.14 with pprz patch to suppress warnings - factorize the ffconf.h file for all chibios boards - set LFN option to 2 (use stack for long file name memory space) * [sdlog] increase stack size to avoid stack overflow Co-authored-by: Gautier Hattenberger <gautier.hattenberger@enac.fr>
12 lines
376 B
Makefile
12 lines
376 B
Makefile
# FATFS files.
|
|
FATFSSRC = $(CHIBIOS)/os/various/fatfs_bindings/fatfs_diskio.c \
|
|
$(CHIBIOS)/os/various/fatfs_bindings/fatfs_syscall.c \
|
|
$(PAPARAZZI_SRC)/sw/ext/fatfs/source/ff.c \
|
|
$(PAPARAZZI_SRC)/sw/ext/fatfs/source/ffunicode.c
|
|
|
|
FATFSINC = $(PAPARAZZI_SRC)/sw/ext/fatfs/source
|
|
|
|
# Shared variables
|
|
ALLCSRC += $(FATFSSRC)
|
|
ALLINC += $(FATFSINC)
|