mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
55 lines
2.4 KiB
Makefile
55 lines
2.4 KiB
Makefile
include ../Makefile.tests_common
|
|
|
|
BOARD ?= native
|
|
|
|
FEATURES_OPTIONAL += periph_rtc
|
|
|
|
# this list is composed of boards that support spi/gpio + native
|
|
BOARD_WHITELIST := airfy-beacon arduino-due arduino-duemilanove \
|
|
arduino-leonardo arduino-mega2560 arduino-mkr1000 \
|
|
arduino-mkrzero arduino-uno arduino-zero avsextrem \
|
|
b-l072z-lrwan1 b-l475e-iot01a blackpill blackpill-128kib \
|
|
bluepill bluepill-128kib cc2538dk ek-lm4f120xl \
|
|
feather-m0 fox frdm-k22f frdm-k64f i-nucleo-lrwan1 ikea-tradfri \
|
|
iotlab-a8-m3 iotlab-m3 limifrog-v1 maple-mini msb-430 msb-430h msba2 \
|
|
msbiot mulle nrf52840dk nrf52dk nrf6310 nucleo-f207zg nucleo-f303ze \
|
|
nucleo-f412zg nucleo-f413zh nucleo-f429zi nucleo-f446ze \
|
|
nucleo-f031k6 nucleo-f042k6 nucleo-f303k8 nucleo-l031k6 \
|
|
nucleo-l432kc nucleo-f072rb nucleo-f091rc nucleo-f103rb nucleo-f302r8 \
|
|
nucleo-f303re nucleo-f334r8 nucleo-f401re nucleo-f410rb nucleo-f411re \
|
|
nucleo-f446re nucleo-l053r8 nucleo-l073rz nucleo-l152re nucleo-l476rg \
|
|
nz32-sc151 openmote-cc2538 pba-d-01-kw2x remote-pa remote-reva \
|
|
remote-revb samd21-xpro saml21-xpro samr21-xpro \
|
|
sensebox_samd21 sltb001a sodaq-autonomo \
|
|
sodaq-explorer spark-core stm32f0discovery stm32f3discovery \
|
|
stm32f4discovery stm32l0538-disco telosb udoo waspmote-pro \
|
|
yunjia-nrf51822 z1 native
|
|
|
|
USEMODULE += shell
|
|
USEMODULE += fatfs_diskio_mtd
|
|
USEMODULE += mtd
|
|
USEPKG += fatfs
|
|
|
|
FATFS_IMAGE_FILE_SIZE_MIB ?= 128
|
|
|
|
ifeq ($(BOARD),native)
|
|
#overwrite default mtd_native-config to use fat image as flash device
|
|
CFLAGS += -DMTD_NATIVE_FILENAME=\"./bin/riot_fatfs_disk.img\"
|
|
CFLAGS += -DMTD_PAGE_SIZE=512
|
|
CFLAGS += -DMTD_SECTOR_SIZE=512
|
|
CFLAGS += -DFATFS_IMAGE_FILE_SIZE_MIB=$(FATFS_IMAGE_FILE_SIZE_MIB)
|
|
CFLAGS += -DMTD_SECTOR_NUM=\(\(\(FATFS_IMAGE_FILE_SIZE_MIB\)*1024*1024\)/MTD_SECTOR_SIZE\)
|
|
else
|
|
# for actual hardware use mtd_sdcard as storage device
|
|
USEMODULE += mtd_sdcard
|
|
endif
|
|
|
|
image:
|
|
@tar -xjf riot_fatfs_disk.tar.gz -C ./bin/
|
|
|
|
#this generates a compressed fat image file that can be used by the fat driver on native
|
|
compressed-image:
|
|
@./create_fat_image_file.sh $(FATFS_IMAGE_FILE_SIZE_MIB)
|
|
|
|
include $(RIOTBASE)/Makefile.include
|