diff options
author | tmk <nobody@nowhere> | 2011-01-17 21:51:51 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2011-01-23 04:10:35 +0900 |
commit | bf1a37ba712b3c42861e7cfabb174724791b41b6 (patch) | |
tree | f6df1afe42e3421ae3646fb981727f2e5aa1c3e9 /ps2_usb/Makefile | |
parent | 7ad93f7850cd3d20260628b10a8b123d97736e4e (diff) |
PS/2 to USB keyboard converter
Diffstat (limited to 'ps2_usb/Makefile')
-rw-r--r-- | ps2_usb/Makefile | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/ps2_usb/Makefile b/ps2_usb/Makefile new file mode 100644 index 0000000000..bd9a76eb85 --- /dev/null +++ b/ps2_usb/Makefile @@ -0,0 +1,81 @@ +# Hey Emacs, this is a -*- makefile -*- +#---------------------------------------------------------------------------- +# WinAVR Makefile Template written by Eric B. Weddington, Jörg Wunsch, et al. +# +# Released to the Public Domain +# +# Additional material for this makefile was written by: +# Peter Fleury +# Tim Henigan +# Colin O'Flynn +# Reiner Patommel +# Markus Pfaff +# Sander Pool +# Frederik Rouleau +# Carlos Lamas +# +#---------------------------------------------------------------------------- +# On command line: +# +# make all = Make software. +# +# make clean = Clean out built project files. +# +# make coff = Convert ELF to AVR COFF. +# +# make extcoff = Convert ELF to AVR Extended COFF. +# +# make program = Download the hex file to the device, using avrdude. +# Please customize the avrdude settings below first! +# +# make debug = Start either simulavr or avarice as specified for debugging, +# with avr-gdb or avr-insight as the front end for debugging. +# +# make filename.s = Just compile filename.c into the assembler code only. +# +# make filename.i = Create a preprocessed source file for use in submitting +# bug reports to the GCC project. +# +# To rebuild project do "make clean" then "make all". +#---------------------------------------------------------------------------- + +# Target file name (without extension). +TARGET = tmk_ps2_usb + +# Directory common source filess exist +COMMON_DIR = .. + +# Directory keyboard dependent files exist +TARGET_DIR = . + +# keyboard dependent files +TARGET_SRC = keymap.c \ + matrix.c \ + ps2.c + + +# MCU name, you MUST set this to match the board you are using +# type "make clean" after changing this, so all files will be rebuilt +#MCU = at90usb162 # Teensy 1.0 +MCU = atmega32u4 # Teensy 2.0 +#MCU = at90usb646 # Teensy++ 1.0 +#MCU = at90usb1286 # Teensy++ 2.0 + + +# Processor frequency. +# Normally the first thing your program should do is set the clock prescaler, +# 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 + + +# Build Options +# comment out to disable the options. +# +MOUSEKEY_ENABLE = yes # Mouse keys +USB_EXTRA_ENABLE = yes # Enhanced feature for Windows(Audio control and System control) +USB_NKRO_ENABLE = yes # USB Nkey Rollover + + +include $(COMMON_DIR)/Makefile.common |