diff options
| -rw-r--r-- | keyboards/kbd8x/config.h | 5 | ||||
| -rw-r--r-- | keyboards/kbd8x/kbd8x.h | 8 | ||||
| -rw-r--r-- | keyboards/kbd8x/keymaps/default/config.h | 9 | ||||
| -rw-r--r-- | keyboards/kbd8x/keymaps/default_backlighting/config.h | 9 | ||||
| -rw-r--r-- | keyboards/kbd8x/keymaps/default_backlighting/rules.mk | 2 | ||||
| -rw-r--r-- | keyboards/kbd8x/rules.mk | 3 |
6 files changed, 9 insertions, 27 deletions
diff --git a/keyboards/kbd8x/config.h b/keyboards/kbd8x/config.h index c021fb40b..7749e0472 100644 --- a/keyboards/kbd8x/config.h +++ b/keyboards/kbd8x/config.h | |||
| @@ -15,8 +15,7 @@ You should have received a copy of the GNU General Public License | |||
| 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. | 15 | along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | */ | 16 | */ |
| 17 | 17 | ||
| 18 | #ifndef CONFIG_H | 18 | #pragma once |
| 19 | #define CONFIG_H | ||
| 20 | 19 | ||
| 21 | #include "config_common.h" | 20 | #include "config_common.h" |
| 22 | 21 | ||
| @@ -196,4 +195,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
| 196 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | 195 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ |
| 197 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | 196 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 |
| 198 | 197 | ||
| 199 | #endif | 198 | |
diff --git a/keyboards/kbd8x/kbd8x.h b/keyboards/kbd8x/kbd8x.h index 02a743644..f28b8ca7a 100644 --- a/keyboards/kbd8x/kbd8x.h +++ b/keyboards/kbd8x/kbd8x.h | |||
| @@ -13,8 +13,7 @@ | |||
| 13 | * You should have received a copy of the GNU General Public License | 13 | * You should have received a copy of the GNU General Public License |
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ | 15 | */ |
| 16 | #ifndef KBD8X_H | 16 | #pragma once |
| 17 | #define KBD8X_H | ||
| 18 | 17 | ||
| 19 | #include "quantum.h" | 18 | #include "quantum.h" |
| 20 | #include "led.h" | 19 | #include "led.h" |
| @@ -31,7 +30,7 @@ inline void scroll_led_off(void) { DDRB &= ~(1<<2); PORTB &= ~(1<<2); } | |||
| 31 | 30 | ||
| 32 | 31 | ||
| 33 | // LAYOUT depicting all possible switch positions. | 32 | // LAYOUT depicting all possible switch positions. |
| 34 | // LAYOUT_all supports ISO, split backspace and split left/right shift. | 33 | // LAYOUT_all supports ISO, split backspace and split left/right shift. |
| 35 | #define LAYOUT_all( \ | 34 | #define LAYOUT_all( \ |
| 36 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, K3D, \ | 35 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, K3D, \ |
| 37 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, K5B, K5C, K3E, \ | 36 | K10, K11, K12, K13, K14, K15, K16, K17, K18, K19, K1A, K1B, K1C, K1D, K1E, K5B, K5C, K3E, \ |
| @@ -49,7 +48,7 @@ inline void scroll_led_off(void) { DDRB &= ~(1<<2); PORTB &= ~(1<<2); } | |||
| 49 | { K50, K51, K52, K53, K54, K55, K56, K57, K58, K59, K5A, K5B, K5C, K5D, K5E } \ | 48 | { K50, K51, K52, K53, K54, K55, K56, K57, K58, K59, K5A, K5B, K5C, K5D, K5E } \ |
| 50 | } | 49 | } |
| 51 | 50 | ||
| 52 | // LAYOUT depicting only switch positions for a standard TKL ANSI keyboard. | 51 | // LAYOUT depicting only switch positions for a standard TKL ANSI keyboard. |
| 53 | // TODO: Double check location of backspace key for 2u layout (It's either K1D or K1C). | 52 | // TODO: Double check location of backspace key for 2u layout (It's either K1D or K1C). |
| 54 | #define LAYOUT_tkl_ansi( \ | 53 | #define LAYOUT_tkl_ansi( \ |
| 55 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, K3D, \ | 54 | K00, K01, K02, K03, K04, K05, K06, K07, K08, K09, K0A, K0B, K0C, K0D, K0E, K3D, \ |
| @@ -68,4 +67,3 @@ inline void scroll_led_off(void) { DDRB &= ~(1<<2); PORTB &= ~(1<<2); } | |||
| 68 | { K50, K51, K52, K53, K54, K55, K56, K57, K58, K59, K5A, K5B, K5C, K5D, K5E } \ | 67 | { K50, K51, K52, K53, K54, K55, K56, K57, K58, K59, K5A, K5B, K5C, K5D, K5E } \ |
| 69 | } | 68 | } |
| 70 | 69 | ||
| 71 | #endif | ||
diff --git a/keyboards/kbd8x/keymaps/default/config.h b/keyboards/kbd8x/keymaps/default/config.h index 63bef2a73..fa7db0bc1 100644 --- a/keyboards/kbd8x/keymaps/default/config.h +++ b/keyboards/kbd8x/keymaps/default/config.h | |||
| @@ -14,11 +14,4 @@ | |||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ | 15 | */ |
| 16 | 16 | ||
| 17 | #ifndef CONFIG_USER_H | 17 | #pragma once |
| 18 | #define CONFIG_USER_H | ||
| 19 | |||
| 20 | #include "config_common.h" | ||
| 21 | |||
| 22 | // place overrides here | ||
| 23 | |||
| 24 | #endif | ||
diff --git a/keyboards/kbd8x/keymaps/default_backlighting/config.h b/keyboards/kbd8x/keymaps/default_backlighting/config.h index 63bef2a73..fa7db0bc1 100644 --- a/keyboards/kbd8x/keymaps/default_backlighting/config.h +++ b/keyboards/kbd8x/keymaps/default_backlighting/config.h | |||
| @@ -14,11 +14,4 @@ | |||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ | 15 | */ |
| 16 | 16 | ||
| 17 | #ifndef CONFIG_USER_H | 17 | #pragma once |
| 18 | #define CONFIG_USER_H | ||
| 19 | |||
| 20 | #include "config_common.h" | ||
| 21 | |||
| 22 | // place overrides here | ||
| 23 | |||
| 24 | #endif | ||
diff --git a/keyboards/kbd8x/keymaps/default_backlighting/rules.mk b/keyboards/kbd8x/keymaps/default_backlighting/rules.mk index e806a1ca5..07b9f81fd 100644 --- a/keyboards/kbd8x/keymaps/default_backlighting/rules.mk +++ b/keyboards/kbd8x/keymaps/default_backlighting/rules.mk | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | #Build Options | 1 | #Build Options |
| 2 | 2 | ||
| 3 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) | 3 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) |
| 4 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 4 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
| 5 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 5 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
| 6 | CONSOLE_ENABLE = yes # Console for debug(+400) | 6 | CONSOLE_ENABLE = yes # Console for debug(+400) |
| 7 | COMMAND_ENABLE = yes # Commands for debug and configuration | 7 | COMMAND_ENABLE = yes # Commands for debug and configuration |
diff --git a/keyboards/kbd8x/rules.mk b/keyboards/kbd8x/rules.mk index 46e9732ea..e5925463e 100644 --- a/keyboards/kbd8x/rules.mk +++ b/keyboards/kbd8x/rules.mk | |||
| @@ -45,7 +45,6 @@ OPT_DEFS += -DINTERRUPT_CONTROL_ENDPOINT | |||
| 45 | # Atmel DFU loader 4096 | 45 | # Atmel DFU loader 4096 |
| 46 | # LUFA bootloader 4096 | 46 | # LUFA bootloader 4096 |
| 47 | # USBaspLoader 2048 | 47 | # USBaspLoader 2048 |
| 48 | OPT_DEFS += -DBOOTLOADER_SIZE=4096 | ||
| 49 | BOOTLOADER = atmel-dfu | 48 | BOOTLOADER = atmel-dfu |
| 50 | 49 | ||
| 51 | 50 | ||
| @@ -53,7 +52,7 @@ BOOTLOADER = atmel-dfu | |||
| 53 | # change yes to no to disable | 52 | # change yes to no to disable |
| 54 | # | 53 | # |
| 55 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) | 54 | BOOTMAGIC_ENABLE = no # Virtual DIP switch configuration(+1000) |
| 56 | MOUSEKEY_ENABLE = yes # Mouse keys(+4700) | 55 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
| 57 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 56 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
| 58 | CONSOLE_ENABLE = yes # Console for debug(+400) | 57 | CONSOLE_ENABLE = yes # Console for debug(+400) |
| 59 | COMMAND_ENABLE = yes # Commands for debug and configuration | 58 | COMMAND_ENABLE = yes # Commands for debug and configuration |
