Files
alexandre bustico 6e6e2f11ce Update chibios fatfs lfn2 dmastack (#2806)
* [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>
2021-12-06 09:39:38 +01:00

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)