1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards/im880b: im880b board clock definition

Signed-off-by: Jean-Michel Friedt <friedtj@free.fr>
This commit is contained in:
Jean-Michel Friedt 2022-07-04 11:27:21 +02:00
parent 1e17aae6a9
commit 8025e6befb

View File

@ -26,6 +26,18 @@
#define CONFIG_BOARD_HAS_LSE 1
#endif
/**
* @brief This board has an HSE clock
*/
#ifndef CONFIG_BOARD_HAS_HSE
#define CONFIG_BOARD_HAS_HSE 1
#endif
/**
* @brief Speed of the HSE clock in Hz
*/
#define CLOCK_HSE MHZ(16)
#include "periph_cpu.h"
#include "clk_conf.h"