##// END OF EJS Templates
snapshot extraction for the waveform ring is operational...
snapshot extraction for the waveform ring is operational the SWF_F1 are coarsely synchronized with SWF_F0 and SWF_F2 a dedicated task, SWBD, [S]napshot [W]aveform [B]uil[D] has been created

File last commit:

r82:4237b1096e59 VHDLib206
r105:ecfd2ffe3033 VHDLib206
Show More
Makefile
20 lines | 473 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
fsw-1-0...
r82 SREC_COUNTER = 0002
SREC_FSW_REF = fsw-1-0
paul@pc-solar1.lab-lpp.local
Makefile added to the repository for the srec generation
r27 SREC_SUFFIX = .srec
SREC_TEXT = $(SREC_PREFIX)_$(SREC_COUNTER)_text_$(SREC_FSW_REF)$(SREC_SUFFIX)
SREC_DATA = $(SREC_PREFIX)_$(SREC_COUNTER)_data_$(SREC_FSW_REF)$(SREC_SUFFIX)
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