aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorChristian Starkjohann <cs+github@obdev.at>2008-10-18 14:23:45 +0000
committerChristian Starkjohann <cs+github@obdev.at>2008-10-18 14:23:45 +0000
commitd93f7a22edcb9084ef0e3323cd527d1fbe3cd80d (patch)
tree36c3a21225c7a7a7605605c26f597ad1d98fc751 /tests
parent555e1a62542737de249e4b93d6d1addc8bf59c68 (diff)
downloadv-usb-d93f7a22edcb9084ef0e3323cd527d1fbe3cd80d.tar.gz
v-usb-d93f7a22edcb9084ef0e3323cd527d1fbe3cd80d.tar.bz2
v-usb-d93f7a22edcb9084ef0e3323cd527d1fbe3cd80d.zip
- added tests for 12.8 MHz
Diffstat (limited to 'tests')
-rw-r--r--tests/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile
index 6c8a1fc..ff0b8fa 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -33,6 +33,8 @@ sizes sizes.txt:
avr-size main.elf | tail -1 | awk '{print "Minimum_with_16_MHz", $$1+$$2, $$3+$$2}' >>$(SIZES_TMP)
$(MAKE) clean; $(MAKE) main.elf F_CPU=12000000
avr-size main.elf | tail -1 | awk '{print "Minimum_with_12_MHz", $$1+$$2, $$3+$$2}' >>$(SIZES_TMP)
+ $(MAKE) clean; $(MAKE) main.elf F_CPU=12800000
+ avr-size main.elf | tail -1 | awk '{print "Minimum_with_12_8_MHz", $$1+$$2, $$3+$$2}' >>$(SIZES_TMP)
$(MAKE) clean; $(MAKE) main.elf F_CPU=15000000
avr-size main.elf | tail -1 | awk '{print "Minimum_with_15_MHz", $$1+$$2, $$3+$$2}' >>$(SIZES_TMP)
$(MAKE) clean; $(MAKE) main.elf F_CPU=16500000
@@ -64,7 +66,7 @@ sizes sizes.txt:
rm $(SIZES_TMP)
test:
- for freq in 12000000 15000000 16000000 16500000 20000000; do \
+ for freq in 12000000 12800000 15000000 16000000 16500000 20000000; do \
for opt in USB_COUNT_SOF USB_CFG_HAVE_INTRIN_ENDPOINT USB_CFG_HAVE_INTRIN_ENDPOINT3 USB_CFG_HAVE_MEASURE_FRAME_LENGTH USB_CFG_LONG_TRANSFERS; do \
$(MAKE) clean; $(MAKE) main.elf F_CPU=$$freq "DEFINES=-D$$opt=1" || exit 1; \
$(MAKE) clean; $(MAKE) main.elf F_CPU=$$freq "DEFINES=-D$$opt=1 -DDUSB_CFG_IMPLEMENT_FN_WRITEOUT=1" || exit 1; \