From 47f5d8b545eec12ca74d8e7048bb5daa290d937e Mon Sep 17 00:00:00 2001 From: tmk Date: Sun, 20 Feb 2011 17:46:02 +0900 Subject: Synchronous USART support for PS/2 on V-USB stack --- ps2_vusb/Makefile | 37 ++++++++++++++++++++++++++++++++++--- 1 file changed, 34 insertions(+), 3 deletions(-) (limited to 'ps2_vusb/Makefile') diff --git a/ps2_vusb/Makefile b/ps2_vusb/Makefile index 406008d84..6901d1f5c 100644 --- a/ps2_vusb/Makefile +++ b/ps2_vusb/Makefile @@ -12,8 +12,9 @@ TARGET_SRC = main.c \ keymap.c \ matrix.c \ led.c \ - ps2.c \ - usart_print.c + ps2_usart.c \ + sendchar_dummy.c +# sendchar_usart.c OPT_DEFS = -DDEBUG_LEVEL=0 @@ -32,7 +33,7 @@ MCU = atmega168 # so your program will run at the correct speed. You should also set this # variable to same clock speed. The _delay_ms() macro uses this, and many # examples use this variable to calculate timings. Do not add a "UL" here. -F_CPU = 16000000 +F_CPU = 20000000 # Build Options @@ -43,5 +44,35 @@ MOUSEKEY_ENABLE = yes # Mouse keys #USB_NKRO_ENABLE = yes # USB Nkey Rollover + +#---------------- Programming Options (avrdude) ---------------- +# Type: avrdude -c ? to get a full listing. +AVRDUDE_PROGRAMMER = usbasp +AVRDUDE_PORT = +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 +# to submit bug reports. +#AVRDUDE_VERBOSE = -v -v + +#AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER) +AVRDUDE_FLAGS = -p $(MCU) -c $(AVRDUDE_PROGRAMMER) +AVRDUDE_FLAGS += $(AVRDUDE_NO_VERIFY) +AVRDUDE_FLAGS += $(AVRDUDE_VERBOSE) +AVRDUDE_FLAGS += $(AVRDUDE_ERASE_COUNTER) + + + include $(COMMON_DIR)/Makefile.vusb include $(COMMON_DIR)/Makefile.common -- cgit v1.2.3