I am playing with the spark fun’s ARM bootloader that is used in the logomatic. I can flash the header board using the makefile, but cannot debug since a main.out symbol file is not generated by the rather complex
makefile. I assume that changes will have to be made to the following in the makefile, however everything that I have tried has not generated the needed file.
Any solutions would be appreciated.
Create final output file (.bin) from ELF output file.
%.bin: %.elf
@echo
@echo $(MSG_FLASH) $@
$(OBJCOPY) -O $(FORMAT) $< $@
thanks