File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 59
59
// RCC Clock
60
60
//--------------------------------------------------------------------+
61
61
#if 1
62
+ // Clock configure for STM32G0B1RE Nucleo
62
63
static inline void board_clock_init (void )
63
64
{
64
65
RCC_OscInitTypeDef RCC_OscInitStruct = {0 };
@@ -114,6 +115,9 @@ static inline void board_clock_init(void)
114
115
HAL_RCC_OscConfig (& osc_hsi48 );
115
116
}
116
117
#else
118
+
119
+ // Clock configure for STM32G0 nucleo with B0 mcu variant for someone that is skilled enough
120
+ // to rework and solder the B0 chip. Note: SB17 may need to be soldered as well (check user manual)
117
121
static inline void board_clock_init (void )
118
122
{
119
123
RCC_OscInitTypeDef RCC_OscInitStruct = {0 };
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ function(family_configure_example TARGET)
121
121
122
122
#---------- Flash ----------
123
123
family_flash_stlink (${TARGET} )
124
- family_flash_jlink (${TARGET} )
124
+ # family_flash_jlink(${TARGET})
125
125
endfunction ()
126
126
127
127
You can’t perform that action at this time.
0 commit comments