STM32CubeIDE: How to program everything from scratch without automatic code?
I'm starting to program STM32 cortex M0 uC, and I want to do it totally from scratch, without any code automatically generated for me, using STM32CubeIDE 1.4.0.
In my code, I've erased everything and letf only this:
int main(void)
{
while (1)
{
}
}But when I open the file "***.LIST" I can see a lot of code generated, including the interrupt handlers and other stuff.
How can I stop it from writting background code for me and let everything manually made for me?
Thanks