1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 06:23:53 +01:00

Merge pull request #18295 from jmfriedt/master

boards/im880b: im880b board clock definition
This commit is contained in:
Marian Buschsieweke 2022-07-10 14:06:07 +02:00 committed by GitHub
commit bad2527ede
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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"