1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-17 10:12:45 +01:00

boards/seeedstudio-gd32: update due to I2C/SPI default config cleanup

This commit is contained in:
Gunar Schorcht 2023-08-06 12:55:08 +02:00
parent 367d94a80b
commit 4074431e42

View File

@ -35,7 +35,13 @@
#define CONFIG_CLOCK_HXTAL MHZ(8) /**< HXTAL frequency */ #define CONFIG_CLOCK_HXTAL MHZ(8) /**< HXTAL frequency */
#endif #endif
#define SPI_DEV_1_USED /**< Enable SPI_DEV(1) for the connected flash */ #ifndef SPI_DEV_1_USED
#define SPI_DEV_1_USED 1 /**< Enable SPI_DEV(1) by default for the connected Flash */
#endif
#ifndef I2C_DEV_1_USED
#define I2C_DEV_1_USED 1 /**< Enable I2C_DEV(1) by default */
#endif
#include "periph_cpu.h" #include "periph_cpu.h"
#include "periph_common_conf.h" #include "periph_common_conf.h"