[chibios] upgrade to chibios 18.2.2 (#2296)

port code and boards to latest stable chibios
also fix bug when time_t is 64 bits wide with meteostick
it should also remove most of the warnings with recent GCC 7
This commit is contained in:
Gautier Hattenberger
2018-07-19 15:47:28 +02:00
committed by GitHub
parent 8dbff73844
commit f3f0c7c043
38 changed files with 3861 additions and 993 deletions
+9 -5
View File
@@ -1,7 +1,11 @@
# FATFS files.
FATFSSRC = ${CHIBIOS}/os/various/fatfs_bindings/fatfs_diskio.c \
${CHIBIOS}/os/various/fatfs_bindings/fatfs_syscall.c \
${PAPARAZZI_SRC}/sw/ext/fatfs/src/ff.c \
${PAPARAZZI_SRC}/sw/ext/fatfs/src/option/ccsbcs.c
FATFSSRC = $(CHIBIOS)/os/various/fatfs_bindings/fatfs_diskio.c \
$(CHIBIOS)/os/various/fatfs_bindings/fatfs_syscall.c \
$(PAPARAZZI_SRC)/sw/ext/fatfs/src/ff.c \
$(PAPARAZZI_SRC)/sw/ext/fatfs/src/ffunicode.c
FATFSINC = ${PAPARAZZI_SRC}/sw/ext/fatfs/src
FATFSINC = $(PAPARAZZI_SRC)/sw/ext/fatfs/src
# Shared variables
ALLCSRC += $(FATFSSRC)
ALLINC += $(FATFSINC)