]> git.donarmstrong.com Git - tmk_firmware.git/commitdiff
Lightsaber clean ups
authorRalf Schmitt <ralf@bunkertor.net>
Sat, 22 Mar 2014 11:41:45 +0000 (12:41 +0100)
committerRalf Schmitt <ralf@bunkertor.net>
Sat, 22 Mar 2014 11:41:45 +0000 (12:41 +0100)
README.md
keyboard/lightsaber/Makefile.lufa
keyboard/lightsaber/Makefile.pjrc
keyboard/lightsaber/README.md

index a561b38eb32cdefdd5a6ce9d30bcf7fe4143e949..6596dc33256e4802db3c582f8199ab8c19d21029 100644 (file)
--- a/README.md
+++ b/README.md
@@ -52,6 +52,7 @@ You can find some keyboard specific projects under `converter` and `keyboard` di
 * [IIgs_Standard](keyboard/IIgs/)           - Apple [IIGS] keyboard mod(by JeffreySung)
 * [macway](keyboard/macway/)                - [Compact keyboard mod][GH_macway] [retired]
 * [KMAC](keyboard/kmac/)                    - Korean custom keyboard
+* [Lightsaber](keyboard/lightsaber/)        - Korean custom keyboard
 
 [GH_macway]:    http://geekhack.org/showwiki.php?title=Island:11930
 [GH_hhkb]:      http://geekhack.org/showwiki.php?title=Island:12047
index 25816ac03eea87118df5167840c9beef911e8ca1..b430efd2297f603098a46bb3477292a88e559791 100644 (file)
@@ -49,10 +49,10 @@ TARGET_DIR = .
 
 
 # List C source files here. (C dependencies are automatically generated.)
-SRC += keymap.c \
+SRC =  keymap.c \
+       matrix.c \
        led.c \
-       backlight.c \
-       matrix.c 
+       backlight.c
 
 CONFIG_H = config.h
 
index 1c5a9710f4c901183fb00eb0188da7069f736a5f..58735a7ef0e7af230b1782fe823964bad0392553 100644 (file)
@@ -56,12 +56,8 @@ SRC =        keymap.c \
 CONFIG_H = config.h
 
 
-# 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
+# MCU name
+MCU = atmega32u4
 
 
 # Processor frequency.
@@ -96,6 +92,3 @@ include $(TOP_DIR)/rules.mk
 
 winkey: OPT_DEFS += -DLAYOUT_WINKEY
 winkey: all
-
-winkeyless: OPT_DEFS += -DLAYOUT_WINKEYLESS
-winkeyless: all
index bd2b3fb528b88491a9622e545586a40ff174db34..9dcd6930959db376c5098a512b57a05ab7a129a6 100644 (file)
@@ -13,7 +13,7 @@ Build
 -----
 Move to this directory then just run `make` like:
 
-    $ make -f Makefile.[pjrc|lufa] [winkey|winkeyless]
+    $ make -f Makefile.[pjrc|lufa]
 
 Use `Makefile.pjrc` if you want to use PJRC stack or use `Makefile.lufa` for LUFA stack.