mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
3890091ced
This patch implements the real time clock module for the QN908X cpus. This module is very straightforward with only the one notable drawback that it doesn't have a match register like the CTIMER block to implement the alarm function. Instead, this driver can only use the interrupt generated ever 1 second to implement the alarm match comparison in software.
11 lines
288 B
Makefile
11 lines
288 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_rtc
|
|
FEATURES_PROVIDED += periph_wdt periph_wdt_cb
|
|
|
|
include $(RIOTCPU)/cortexm_common/Makefile.features
|