2022-02-08 04:00 PM
I'm using the STM32U5 and when I create a basic project in Keil and compile, I get the following error:
"Error: L6218E: Undefined symbol SECURE_SystemCoreClockUpdate (referred from system_stm32u5xx_ns.o)."
How to fix this?
I don't want to use STM32Cube and prefer to use Keil only using my own custom drivers.
Is there a missing SW pack or something? My main file just has a very simple infinite while(1) loop.
2022-02-08 04:24 PM
Double check where it is defined, why that might not be occuring.
Check the source file is in the project, and built.
Make sure the right modules are enabled via stm32u5xx_hal_conf.h
2022-02-08 07:59 PM
Where can I enable modules?