Skip to content

Commit 498ea75

Browse files
committed
Lightsaber clean ups
1 parent 526d988 commit 498ea75

File tree

4 files changed

+7
-13
lines changed

4 files changed

+7
-13
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ You can find some keyboard specific projects under `converter` and `keyboard` di
5252
* [IIgs_Standard](keyboard/IIgs/) - Apple [IIGS] keyboard mod(by JeffreySung)
5353
* [macway](keyboard/macway/) - [Compact keyboard mod][GH_macway] [retired]
5454
* [KMAC](keyboard/kmac/) - Korean custom keyboard
55+
* [Lightsaber](keyboard/lightsaber/) - Korean custom keyboard
5556

5657
[GH_macway]: http://geekhack.org/showwiki.php?title=Island:11930
5758
[GH_hhkb]: http://geekhack.org/showwiki.php?title=Island:12047

keyboard/lightsaber/Makefile.lufa

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ TARGET_DIR = .
4949

5050

5151
# List C source files here. (C dependencies are automatically generated.)
52-
SRC += keymap.c \
52+
SRC = keymap.c \
53+
matrix.c \
5354
led.c \
54-
backlight.c \
55-
matrix.c
55+
backlight.c
5656

5757
CONFIG_H = config.h
5858

keyboard/lightsaber/Makefile.pjrc

+2-9
Original file line numberDiff line numberDiff line change
@@ -56,12 +56,8 @@ SRC = keymap.c \
5656
CONFIG_H = config.h
5757

5858

59-
# MCU name, you MUST set this to match the board you are using
60-
# type "make clean" after changing this, so all files will be rebuilt
61-
#MCU = at90usb162 # Teensy 1.0
62-
MCU = atmega32u4 # Teensy 2.0
63-
#MCU = at90usb646 # Teensy++ 1.0
64-
#MCU = at90usb1286 # Teensy++ 2.0
59+
# MCU name
60+
MCU = atmega32u4
6561

6662

6763
# Processor frequency.
@@ -96,6 +92,3 @@ include $(TOP_DIR)/rules.mk
9692

9793
winkey: OPT_DEFS += -DLAYOUT_WINKEY
9894
winkey: all
99-
100-
winkeyless: OPT_DEFS += -DLAYOUT_WINKEYLESS
101-
winkeyless: all

keyboard/lightsaber/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Build
1313
-----
1414
Move to this directory then just run `make` like:
1515

16-
$ make -f Makefile.[pjrc|lufa] [winkey|winkeyless]
16+
$ make -f Makefile.[pjrc|lufa]
1717

1818
Use `Makefile.pjrc` if you want to use PJRC stack or use `Makefile.lufa` for LUFA stack.
1919

0 commit comments

Comments
 (0)