##// END OF EJS Templates
the interrupt sub routine related to the waveform picker is now lighter...
the interrupt sub routine related to the waveform picker is now lighter no more picks are observed on the waveforms

File last commit:

r82:4237b1096e59 VHDLib206
r112:5b5da8d2c053 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