1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 22:13:52 +01:00

boards/common/blxxxpill: provide periph_rtt

This commit is contained in:
Francisco Molina 2020-04-22 14:14:59 +02:00
parent 5b814dbe98
commit a72abe5903
No known key found for this signature in database
GPG Key ID: 3E94EAC3DBDEEDA8
2 changed files with 10 additions and 0 deletions

View File

@ -4,6 +4,7 @@ CPU = stm32f1
FEATURES_PROVIDED += periph_adc
FEATURES_PROVIDED += periph_i2c
FEATURES_PROVIDED += periph_pwm
FEATURES_PROVIDED += periph_rtt
FEATURES_PROVIDED += periph_spi
FEATURES_PROVIDED += periph_timer
FEATURES_PROVIDED += periph_uart

View File

@ -59,6 +59,15 @@ extern "C" {
#define CLOCK_PLL_MUL (9)
/** @} */
/**
* @name Real time counter configuration
* @{
*/
#ifndef RTT_FREQUENCY
#define RTT_FREQUENCY (16384) /* in Hz */
#endif
/** @} */
/**
* @name ADC configuration
* @{