mirror of
https://github.com/micropython/micropython.git
synced 2025-12-15 17:30:14 +01:00
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>
15 lines
324 B
C
15 lines
324 B
C
#ifndef R_IIC_MASTER_CFG_H_
|
|
#define R_IIC_MASTER_CFG_H_
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define IIC_MASTER_CFG_PARAM_CHECKING_ENABLE (BSP_CFG_PARAM_CHECKING_ENABLE)
|
|
#define IIC_MASTER_CFG_DTC_ENABLE (0)
|
|
#define IIC_MASTER_CFG_ADDR_MODE_10_BIT_ENABLE (0)
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* R_IIC_MASTER_CFG_H_ */
|