##// END OF EJS Templates
The flight software is now compatible with the VHDL 0.1.32...
The flight software is now compatible with the VHDL 0.1.32 Still some bugs at startup, may be due to the VHDL

File last commit:

r165:c9daaae78ba2 spool
r171:13f27d43af32 VHDL_0_1_28
Show More
Makefile
21 lines | 517 B | text/x-makefile | MakefileLexer
paul@pc-solar1.lab-lpp.local
Makefile added to the repository for the srec generation
r27 SREC_PREFIX = RpwLfrApp
paul
srec generation modified
r138 SREC_COUNTER_TEXT = 0003
SREC_COUNTER_DATA = 0004
SREC_FSW_REF = rev-1-0-0-7
paul@pc-solar1.lab-lpp.local
Makefile added to the repository for the srec generation
r27 SREC_SUFFIX = .srec
paul
srec generation modified
r138 SREC_TEXT = $(SREC_PREFIX)_$(SREC_COUNTER_TEXT)_text_$(SREC_FSW_REF)$(SREC_SUFFIX)
SREC_DATA = $(SREC_PREFIX)_$(SREC_COUNTER_DATA)_data_$(SREC_FSW_REF)$(SREC_SUFFIX)
paul@pc-solar1.lab-lpp.local
Makefile added to the repository for the srec generation
r27 OBJCOPY = sparc-rtems-objcopy
OBJCOPY_OPT = -g -v
all: text data
text: fsw
$(OBJCOPY) $(OBJCOPY_OPT) fsw $(SREC_TEXT) -O srec -j .text
data: fsw
$(OBJCOPY) $(OBJCOPY_OPT) fsw $(SREC_DATA) -O srec -j .data
clean:
rm *.srec