You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue reported from stm32duino:
The _Error_Handler() function is not defined when we add a new variant and copy the SystemClock_Config() from STM32CubeMX.
The text was updated successfully, but these errors were encountered:
ghost
changed the title
New variant: error_handler() not defined in SystemClock_Config(void)
New variant: _Error_Handler() not defined in SystemClock_Config()
Jul 20, 2017
Allow to use the SystemClock_Config() from STM32CubeMX without any change.
It could be redefined by user at sketch level (weak)
extern "C" void _Error_Handler(const char * file, int line)
{
...
}
Fixstm32duino#66
Signed-off-by: Frederic.Pillon <[email protected]>
Allow to use the SystemClock_Config() from STM32CubeMX without any change.
It could be redefined by user at sketch level (weak)
extern "C" void _Error_Handler(const char * file, int line)
{
...
}
Fixstm32duino#66
Signed-off-by: Frederic.Pillon <[email protected]>
Issue reported from stm32duino:
The _Error_Handler() function is not defined when we add a new variant and copy the SystemClock_Config() from STM32CubeMX.
2 possible solutions:
or
The text was updated successfully, but these errors were encountered: