diff options
author | tmk <nobody@nowhere> | 2011-02-20 17:46:02 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2011-02-22 03:09:12 +0900 |
commit | 47f5d8b545eec12ca74d8e7048bb5daa290d937e (patch) | |
tree | 048918055caafa7a6503d8fb5a077181d954dd85 /Makefile.rules | |
parent | 239bdbf41936566c0ae5b0cbd8c6bf7dd824f7fb (diff) |
Synchronous USART support for PS/2 on V-USB stack
Diffstat (limited to 'Makefile.rules')
-rw-r--r-- | Makefile.rules | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/Makefile.rules b/Makefile.rules index 77bdf88463..96d1d7e1e4 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -233,42 +233,6 @@ LDFLAGS += $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB) -#---------------- Programming Options (avrdude) ---------------- - -# Programming hardware -# Type: avrdude -c ? -# to get a full listing. -# -AVRDUDE_PROGRAMMER = stk500v2 - -# com1 = serial port. Use lpt1 to connect to parallel port. -AVRDUDE_PORT = com1 # programmer connected to serial device - -AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex -#AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep - - -# Uncomment the following if you want avrdude's erase cycle counter. -# Note that this counter needs to be initialized first using -Yn, -# see avrdude manual. -#AVRDUDE_ERASE_COUNTER = -y - -# Uncomment the following if you do /not/ wish a verification to be -# performed after programming the device. -#AVRDUDE_NO_VERIFY = -V - -# Increase verbosity level. Please use this when submitting bug -# reports about avrdude. See <http://savannah.nongnu.org/projects/avrdude> -# to submit bug reports. -#AVRDUDE_VERBOSE = -v -v - -AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER) -AVRDUDE_FLAGS += $(AVRDUDE_NO_VERIFY) -AVRDUDE_FLAGS += $(AVRDUDE_VERBOSE) -AVRDUDE_FLAGS += $(AVRDUDE_ERASE_COUNTER) - - - #---------------- Debugging Options ---------------- # For simulavr only - target MCU frequency. |