Skip to content

Commit

Permalink
hw/bsp/stm32: Allow to specify HSE value in syscfg
Browse files Browse the repository at this point in the history
This modifies stm32xxx_hal_conf.h to use STM32_CLOCK_HSE_VALUE
from syscfg if specified.

This is done because evaluation boards often allow to modify
how HSE is connected with solder bridges.

Signed-off-by: Jerzy Kasenberg <[email protected]>
  • Loading branch information
kasjer committed Jul 30, 2024
1 parent 77540fb commit 393dc5a
Show file tree
Hide file tree
Showing 33 changed files with 99 additions and 33 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)12000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/b-l072z-lrwan1/include/bsp/stm32l0xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000U) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/b-l475e-iot01a/include/bsp/stm32l4xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE 8000000U /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/black_vet6/include/bsp/stm32f4xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/bluepill/include/bsp/stm32f1xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#if defined(USE_STM3210C_EVAL)
#define HSE_VALUE 25000000U /*!< Value of the External oscillator in Hz */
#else
Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-f030r8/include/bsp/stm32f0xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-f072rb/include/bsp/stm32f0xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-f103rb/include/bsp/stm32f1xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#if defined(USE_STM3210C_EVAL)
#define HSE_VALUE 25000000U /*!< Value of the External oscillator in Hz */
#else
Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-f303k8/include/bsp/stm32f3xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE (8000000U) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-f303re/include/bsp/stm32f3xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE (8000000U) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-f401re/include/bsp/stm32f4xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-f411re/include/bsp/stm32f4xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-f413zh/include/bsp/stm32f4xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-f439zi/include/bsp/stm32f4xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-f746zg/include/bsp/stm32f7xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000U) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-f767zi/include/bsp/stm32f7xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000U) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-g0b1re/include/bsp/stm32g0xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ extern "C" {
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE (8000000UL) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-g491re/include/bsp/stm32g4xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ extern "C" {
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE 24000000UL /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-h723zg/include/bsp/stm32h7xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ extern "C" {
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-l073rz/include/bsp/stm32l0xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000U) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-l476rg/include/bsp/stm32l4xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE 8000000U /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/nucleo-u575zi-q/include/bsp/stm32u5xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ extern "C" {
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE 16000000UL /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/olimex-p103/include/bsp/stm32f1xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#if defined(USE_STM3210C_EVAL)
#define HSE_VALUE 25000000U /*!< Value of the External oscillator in Hz */
#else
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)12000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE 32000000U /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/p-nucleo-wb55/include/bsp/stm32wbxx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE 32000000U /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/stm32f3discovery/include/bsp/stm32f3xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE (8000000U) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/stm32f411discovery/include/bsp/stm32f4xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/stm32f429discovery/include/bsp/stm32f4xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/stm32f4discovery/include/bsp/stm32f4xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)8000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/stm32f7discovery/include/bsp/stm32f7xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE ((uint32_t)25000000) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/stm32l152discovery/include/bsp/stm32l1xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,9 @@
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE (8000000U) /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down
4 changes: 3 additions & 1 deletion hw/bsp/weact_g431cb/include/bsp/stm32g4xx_hal_conf.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,9 @@ extern "C" {
* This value is used by the RCC HAL module to compute the system frequency
* (when HSE is used as system clock source, directly or through the PLL).
*/
#if !defined (HSE_VALUE)
#if defined (MYNEWT_VAL_STM32_CLOCK_HSE_VALUE)
#define HSE_VALUE MYNEWT_VAL(STM32_CLOCK_HSE_VALUE)
#elif !defined (HSE_VALUE)
#define HSE_VALUE 8000000UL /*!< Value of the External oscillator in Hz */
#endif /* HSE_VALUE */

Expand Down

0 comments on commit 393dc5a

Please sign in to comment.