1
0
mirror of git://projects.qi-hardware.com/antorcha.git synced 2025-04-21 12:27:27 +03:00

tornado/fw/: display test text on positive zero crossing

This commit is contained in:
Werner Almesberger
2012-12-04 07:28:55 -03:00
parent c6bef66427
commit f3c22bc6ab
2 changed files with 23 additions and 5 deletions

View File

@@ -78,6 +78,11 @@ boot.elf: $(BOOT_OBJS)
$(BUILD) $(OBJCOPY) -j .text -j .data -O ihex $< $@
$(SIZE) $@
tornado.o: img.inc
img.inc: txt/t
(cd txt; ./t) >$@ || { rm -f $@; exit 1; }
# ----- Cleanup ---------------------------------------------------------------
clean:
@@ -86,6 +91,7 @@ clean:
rm -f boot.hex boot.elf
rm -f $(BOOT_OBJS) $(BOOT_OBJS:.o=.d)
rm -f version.c version.d version.o
rm -f img.inc
# ----- Build version ---------------------------------------------------------