micropython/ports/renesas-ra/fsp_cfg/r_sdhi_cfg.h
mbedNoobNinja fae96b17a7 renesas-ra: Add support for RA6M5, and add machine PWM, DAC, SDCard.
This commit adds support for a new processor RA6M5.  It also adds the
following classes to the machine module: PWM, DAC, SDCard.

Signed-off-by: mbedNoobNinja <novoltage@gmail.com>
2023-06-27 12:30:25 +10:00

20 lines
427 B
C

#ifndef R_SDHI_CFG_H_
#define R_SDHI_CFG_H_
#ifdef __cplusplus
extern "C" {
#endif
#define SDHI_CFG_PARAM_CHECKING_ENABLE (BSP_CFG_PARAM_CHECKING_ENABLE)
#define SDMMC_CFG_UNALIGNED_ACCESS_ENABLE (1)
#ifndef SDHI_CFG_SD_SUPPORT_ENABLE
#define SDHI_CFG_SD_SUPPORT_ENABLE ((1))
#endif
#ifndef SDHI_CFG_EMMC_SUPPORT_ENABLE
#define SDHI_CFG_EMMC_SUPPORT_ENABLE ((0))
#endif
#ifdef __cplusplus
}
#endif
#endif /* R_SDHI_CFG_H_ */