TL:DR; New to firmware development. Inherited codebase for new revision of product. Sole firmware developer. Cannot step through code. Seeking advice.---------------------So I am fairly new to firmware development in a new company where I inherit...
Thanks. Yes, I did note that in the .ld file for the bootloader, I have the following:/* Specify the memory areas */MEMORY{RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 320KCCMRAM (rw) : ORIGIN = 0x10000000, LENGTH = 64KFLASH (rx) : ORIGIN = 0x800...
Is there a way to set a breakpoint at an address? I'm able to set breakpoints at source code lines. I know how to do this in windbg, but this is a new world for me.Setting a breakpoint in the .s file for Reset_Handler and the call to SystemInit res...
What is your preferred IDE? Given my lack of expertise, I'm a bit concerned as to switching environments, given that this environment was used successfully in the past. I'm just missing something basic. But as my knowledge grows, I'm open to chang...