File tree 4 files changed +7
-13
lines changed
4 files changed +7
-13
lines changed Original file line number Diff line number Diff line change @@ -52,6 +52,7 @@ You can find some keyboard specific projects under `converter` and `keyboard` di
52
52
* [ IIgs_Standard] ( keyboard/IIgs/ ) - Apple [ IIGS] keyboard mod(by JeffreySung)
53
53
* [ macway] ( keyboard/macway/ ) - [ Compact keyboard mod] [ GH_macway ] [ retired]
54
54
* [ KMAC] ( keyboard/kmac/ ) - Korean custom keyboard
55
+ * [ Lightsaber] ( keyboard/lightsaber/ ) - Korean custom keyboard
55
56
56
57
[ GH_macway ] : http://geekhack.org/showwiki.php?title=Island:11930
57
58
[ GH_hhkb ] : http://geekhack.org/showwiki.php?title=Island:12047
Original file line number Diff line number Diff line change @@ -49,10 +49,10 @@ TARGET_DIR = .
49
49
50
50
51
51
# List C source files here. (C dependencies are automatically generated.)
52
- SRC += keymap.c \
52
+ SRC = keymap.c \
53
+ matrix.c \
53
54
led.c \
54
- backlight.c \
55
- matrix.c
55
+ backlight.c
56
56
57
57
CONFIG_H = config.h
58
58
Original file line number Diff line number Diff line change @@ -56,12 +56,8 @@ SRC = keymap.c \
56
56
CONFIG_H = config.h
57
57
58
58
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
65
61
66
62
67
63
# Processor frequency.
@@ -96,6 +92,3 @@ include $(TOP_DIR)/rules.mk
96
92
97
93
winkey: OPT_DEFS += -DLAYOUT_WINKEY
98
94
winkey: all
99
-
100
- winkeyless: OPT_DEFS += -DLAYOUT_WINKEYLESS
101
- winkeyless: all
Original file line number Diff line number Diff line change 13
13
-----
14
14
Move to this directory then just run ` make ` like:
15
15
16
- $ make -f Makefile.[pjrc|lufa] [winkey|winkeyless]
16
+ $ make -f Makefile.[pjrc|lufa]
17
17
18
18
Use ` Makefile.pjrc ` if you want to use PJRC stack or use ` Makefile.lufa ` for LUFA stack.
19
19
You can’t perform that action at this time.
0 commit comments