Hi,
I’ve installed WinARM and followed the SparkFun tutorial on how to setup the path parameters in Windows 2000. I’ve downloaded the Logomatic V2 firmware hoping to modify it but when I MAKE it I get the following error at the end: make.exe: *** No rule to make target FW.SFE', needed by
build’. Stop. Anyone know how to fix this?
Thanks,
Logictechs
Solved my own problem. Turns out the MAKE file that came in the zipped Logomatic V2 firmware had a flaw in it. If you go down to where it says:
Create final output file (.bin) from ELF output file.
LOGOV2.FW: main.elf
@echo
@echo $(MSG_FLASH) $@
$(OBJCOPY) -O binary $< $@
You need to change it to this:
Create final output file (.bin) from ELF output file.
FW.SFE: main.elf
@echo
@echo $(MSG_FLASH) $@
$(OBJCOPY) -O binary $< $@