1 /* This file is part of the MicroPython project, http://micropython.org/
2  * The MIT License (MIT)
3  * Copyright (c) 2019 Damien P. George
4  */
5 #ifndef MICROPY_INCLUDED_STM32L0XX_HAL_CONF_H
6 #define MICROPY_INCLUDED_STM32L0XX_HAL_CONF_H
7 
8 #include "boards/stm32l0xx_hal_conf_base.h"
9 
10 // Oscillator values in Hz
11 #define HSE_VALUE (8000000)
12 #define LSE_VALUE (32768)
13 
14 // Oscillator timeouts in ms
15 #define HSE_STARTUP_TIMEOUT (100)
16 #define LSE_STARTUP_TIMEOUT (5000)
17 
18 #endif // MICROPY_INCLUDED_STM32L0XX_HAL_CONF_H
19