Hello,
I am stepping through the bootloader code for the F28335 DSP by loading symbols via the .out file.
I have the controlCARD switches configured to boot to SPI and I have been able to view 0x003 on my o-scope when stepping through and running the code. This corresponds to the read command, SPI_Transmit(0x003) in the SPI_Boot() function within the bootloader.
As an experiment, I want to modifiy this read command, i.e. SPI_Transmit (value) so I can see how the signal changes on my o-scope. I want send 0xA3A3 instead of 0x003 for example.
I changed the value in the SPI_boot.c file, and tried to build the code, but I get errors. I saved the changes in the SPI_Boot.c file as well before building but when I stepped through the code, the same read command waveform appeared on my scope, i.e. 0x003 and not 0xA3A3.
What is the correct way to recompile modified bootloader code?
Thank you,
Chuck