mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
70113b5fd3
This initial I2C support allows to use the I2C bus in controller mode to interact with multiple peripherals in blocking mode. The CPU will perform a busy wait when transferring data over I2C.
12 lines
332 B
Makefile
12 lines
332 B
Makefile
CPU_CORE = cortex-m4f
|
|
CPU_FAM = qn908x
|
|
|
|
FEATURES_PROVIDED += cortexm_mpu
|
|
FEATURES_PROVIDED += periph_cpuid
|
|
FEATURES_PROVIDED += periph_gpio periph_gpio_irq
|
|
FEATURES_PROVIDED += periph_i2c_reconfigure
|
|
FEATURES_PROVIDED += periph_rtc
|
|
FEATURES_PROVIDED += periph_wdt periph_wdt_cb
|
|
|
|
include $(RIOTCPU)/cortexm_common/Makefile.features
|