1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/remote-revb: define default MTD device

This commit is contained in:
J. David Ibáñez 2022-09-20 09:52:29 +02:00
parent 6988db6dbe
commit 630c4a0474
5 changed files with 55 additions and 0 deletions

View File

@ -14,5 +14,13 @@ config BOARD_REMOTE_REVB
select HAS_ARDUINO
select HAVE_SAUL_ADC
select HAVE_SAUL_GPIO
select HAS_SDCARD_SPI
select HAVE_MTD_SDCARD
select HAVE_SDCARD_SPI
select MODULE_FATFS_VFS if MODULE_VFS_DEFAULT
select MODULE_MTD if MODULE_VFS_DEFAULT
select MODULE_SDCARD_SPI if MODULE_MTD
source "$(RIOTBOARD)/common/remote/Kconfig"

View File

@ -1,3 +1,13 @@
USEMODULE += boards_common_remote
ifneq (,$(filter mtd,$(USEMODULE)))
USEMODULE += mtd_sdcard
endif
# default to using fatfs on SD card
ifneq (,$(filter vfs_default,$(USEMODULE)))
USEMODULE += fatfs_vfs
USEMODULE += mtd
endif
include $(RIOTBOARD)/common/remote/Makefile.dep

View File

@ -1,3 +1,4 @@
include $(RIOTBOARD)/common/remote/Makefile.features
FEATURES_PROVIDED += arduino
FEATURES_PROVIDED += sdcard_spi

View File

@ -24,6 +24,35 @@
#include "cpu.h"
#include "fancy_leds.h"
#if defined(MODULE_MTD_SDCARD)
#include "mtd_sdcard.h"
#include "sdcard_spi.h"
#include "sdcard_spi_params.h"
#if defined(MODULE_FATFS_VFS)
#include "fs/fatfs.h"
#include "vfs_default.h"
#endif
/* this is provided by the sdcard_spi driver see drivers/sdcard_spi/sdcard_spi.c */
extern sdcard_spi_t sdcard_spi_devs[ARRAY_SIZE(sdcard_spi_params)];
mtd_sdcard_t mtd_sdcard_dev = {
.base = {
.driver = &mtd_sdcard_driver,
},
.sd_card = &sdcard_spi_devs[0],
.params = &sdcard_spi_params[0]
};
mtd_dev_t *mtd0 = (mtd_dev_t *)&mtd_sdcard_dev;
#if IS_USED(MODULE_FATFS_VFS)
VFS_AUTO_MOUNT(fatfs, VFS_MTD(mtd_sdcard_dev), VFS_DEFAULT_SD(0), 0);
#endif /* MODULE_FATFS_VFS */
#endif /* MODULE_MTD_SDCARD */
/**
* @brief Initialize the boards on-board LEDs
*

View File

@ -23,6 +23,7 @@
#define BOARD_H
#include "cpu.h"
#include "mtd.h"
#include "board_common.h"
#ifdef __cplusplus
@ -122,6 +123,12 @@
#define SDCARD_SPI_PARAM_POWER_AH false
/** @} */
/** Default MTD device */
#define MTD_0 mtd0
/** mtd flash emulation device */
extern mtd_dev_t *mtd0;
#ifdef __cplusplus
} /* end extern "C" */
#endif