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

boards/stm32l1: override default LSE in boards where needed

This commit is contained in:
Alexandre Abadie 2020-08-28 22:09:10 +02:00
parent 67a1c029b4
commit 4bdb3db0f9
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405
2 changed files with 4 additions and 4 deletions

View File

@ -22,8 +22,8 @@
/*
* This board provides an LSE, so enable it before including the default clock config
*/
#ifndef CLOCK_LSE
#define CLOCK_LSE (1)
#ifndef CONFIG_BOARD_HAS_LSE
#define CONFIG_BOARD_HAS_LSE (1)
#endif
#include "periph_cpu.h"

View File

@ -27,8 +27,8 @@
/*
* This board provides an LSE, so enable it before including the default clock config
*/
#ifndef CLOCK_LSE
#define CLOCK_LSE (1)
#ifndef CONFIG_BOARD_HAS_LSE
#define CONFIG_BOARD_HAS_LSE (1)
#endif
#include "periph_cpu.h"