Files
micropython/ports/stm32/boards/NUCLEO_N657X0/stm32n6xx_hal_conf.h
2025-07-08 16:28:58 +10:00

19 lines
509 B
C

/* This file is part of the MicroPython project, http://micropython.org/
* The MIT License (MIT)
* Copyright (c) 2019 Damien P. George
*/
#ifndef MICROPY_INCLUDED_STM32N6XX_HAL_CONF_H
#define MICROPY_INCLUDED_STM32N6XX_HAL_CONF_H
// Oscillator values in Hz
#define HSE_VALUE (48000000)
#define LSE_VALUE (32768)
// Oscillator timeouts in ms
#define HSE_STARTUP_TIMEOUT (100)
#define LSE_STARTUP_TIMEOUT (5000)
#include "boards/stm32n6xx_hal_conf_base.h"
#endif // MICROPY_INCLUDED_STM32N6XX_HAL_CONF_H