commit
49fe93fbb3
@ -0,0 +1,25 @@ |
||||
|
||||
|
||||
# Build Options
|
||||
# change to "no" to disable the options, or define them in the Makefile in
|
||||
# the appropriate keymap folder that will get included automatically
|
||||
#
|
||||
BOOTMAGIC_ENABLE = yes # Virtual DIP switch configuration(+1000)
|
||||
MOUSEKEY_ENABLE = yes # Mouse keys(+4700)
|
||||
EXTRAKEY_ENABLE = yes # Audio control and System control(+450)
|
||||
CONSOLE_ENABLE = yes # Console for debug(+400)
|
||||
COMMAND_ENABLE = yes # Commands for debug and configuration
|
||||
NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
|
||||
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
|
||||
MIDI_ENABLE = no # MIDI controls
|
||||
AUDIO_ENABLE = no # Audio output on port C6
|
||||
UNICODE_ENABLE = no # Unicode
|
||||
BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
|
||||
RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time.
|
||||
|
||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||
|
||||
ifndef QUANTUM_DIR |
||||
include ../../../../Makefile
|
||||
endif |
@ -0,0 +1,91 @@ |
||||
/*
|
||||
Copyright 2012 Jun Wako <wakojun@gmail.com> |
||||
|
||||
This program is free software: you can redistribute it and/or modify |
||||
it under the terms of the GNU General Public License as published by |
||||
the Free Software Foundation, either version 2 of the License, or |
||||
(at your option) any later version. |
||||
|
||||
This program is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
GNU General Public License for more details. |
||||
|
||||
You should have received a copy of the GNU General Public License |
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*/ |
||||
|
||||
#ifndef CONFIG_H |
||||
#define CONFIG_H |
||||
|
||||
#include "config_common.h" |
||||
|
||||
/* USB Device descriptor parameter */ |
||||
#define VENDOR_ID 0xFEED |
||||
#define PRODUCT_ID 0x6060 |
||||
#define MANUFACTURER Ortholinear Keyboards |
||||
#define PRODUCT The Planck Keyboard |
||||
#define DESCRIPTION A compact ortholinear keyboard |
||||
|
||||
/* key matrix size */ |
||||
#define MATRIX_ROWS 4 |
||||
#define MATRIX_COLS 12 |
||||
|
||||
/* Planck PCB default pin-out */ |
||||
#define MATRIX_ROW_PINS { D0, D5, B5, B6 } |
||||
#define MATRIX_COL_PINS { F1, F0, B0, C7, F4, F5, F6, F7, D4, D6, B4, D7 } |
||||
#define UNUSED_PINS |
||||
|
||||
#define BACKLIGHT_PIN B7 |
||||
|
||||
/* COL2ROW or ROW2COL */ |
||||
#define DIODE_DIRECTION COL2ROW |
||||
|
||||
/* define if matrix has ghost */ |
||||
//#define MATRIX_HAS_GHOST
|
||||
|
||||
/* number of backlight levels */ |
||||
#define BACKLIGHT_LEVELS 3 |
||||
|
||||
/* Set 0 if debouncing isn't needed */ |
||||
#define DEBOUNCING_DELAY 5 |
||||
|
||||
/* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ |
||||
#define LOCKING_SUPPORT_ENABLE |
||||
/* Locking resynchronize hack */ |
||||
#define LOCKING_RESYNC_ENABLE |
||||
|
||||
/* key combination for command */ |
||||
#define IS_COMMAND() ( \ |
||||
keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT)) \
|
||||
) |
||||
|
||||
/*
|
||||
* Feature disable options |
||||
* These options are also useful to firmware size reduction. |
||||
*/ |
||||
|
||||
/* disable debug print */ |
||||
//#define NO_DEBUG
|
||||
|
||||
/* disable print */ |
||||
//#define NO_PRINT
|
||||
|
||||
/* disable action features */ |
||||
//#define NO_ACTION_LAYER
|
||||
//#define NO_ACTION_TAPPING
|
||||
//#define NO_ACTION_ONESHOT
|
||||
//#define NO_ACTION_MACRO
|
||||
//#define NO_ACTION_FUNCTION
|
||||
|
||||
/* prevent the modifiers from being stuck, sacrificing some memory */ |
||||
#define PREVENT_STUCK_MODIFIERS |
||||
|
||||
#ifdef SUBPROJECT_rev3 |
||||
#include "rev3/config.h" |
||||
#endif |
||||
#ifdef SUBPROJECT_rev4 |
||||
#include "rev4/config.h" |
||||
#endif |
||||
|
||||
#endif |
@ -0,0 +1,187 @@ |
||||
// This is the canonical layout file for the Quantum project. If you want to add another keyboard,
|
||||
// this is the style you want to emulate.
|
||||
|
||||
#include "planck.h" |
||||
#ifdef BACKLIGHT_ENABLE |
||||
# include "backlight.h" |
||||
#endif |
||||
#include "timer.h" |
||||
#include <bootloader.h> |
||||
|
||||
// Each layer gets a name for readability, which is then used in the keymap matrix below.
|
||||
// The underscores don't mean anything - you can have a layer called STUFF or any other name.
|
||||
// Layer names don't all need to be of the same length, obviously, and you can also skip them
|
||||
// entirely and just use numbers.
|
||||
enum userlayer { |
||||
_QW = 0, |
||||
_CM, |
||||
_PP, |
||||
_PPG, |
||||
_NM, |
||||
_LW, |
||||
_RS, |
||||
_DL, |
||||
_DYN, |
||||
}; |
||||
|
||||
enum planck_keycodes { |
||||
KM_LW = SAFE_RANGE, |
||||
KM_RS, |
||||
KM_SHLK, /* ShiftLock */ |
||||
KM_RST, /* Reset */ |
||||
KM_NUM, /* Numeric layer */ |
||||
KM_SLP, /* Sleep 250 ms */ |
||||
KM_PPLR, /* Pure Pro layer */ |
||||
DYNAMIC_MACRO_RANGE, |
||||
}; |
||||
|
||||
#include "dynamic_macro.h" |
||||
|
||||
#define _______ KC_TRNS |
||||
#define XXXXXXX KC_NO |
||||
|
||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { |
||||
[_QW] = { /* Qwerty */ |
||||
{KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC}, |
||||
{CTL_T(KC_ESC), KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT}, |
||||
{KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_FN0 }, |
||||
{KC_LCTL, MO(_DYN),KC_LGUI, KC_LALT, KM_LW, KC_SPC, KC_SPC, KM_RS, KC_RALT, KC_DOWN, KC_UP, KC_RCTL} |
||||
}, |
||||
[_CM] = { /* Colemak */ |
||||
{KC_TAB, KC_Q, KC_W, KC_F, KC_P, KC_G, KC_J, KC_L, KC_U, KC_Y, KC_SCLN, KC_BSPC}, |
||||
{CTL_T(KC_ESC), KC_A, KC_R, KC_S, KC_T, KC_D, KC_H, KC_N, KC_E, KC_I, KC_O, KC_QUOT}, |
||||
{KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_K, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_FN0 }, |
||||
{KC_LCTL, MO(_DYN),KC_LGUI, KC_LALT, KM_LW, KC_SPC, KC_SPC, KM_RS, KC_RALT, KC_DOWN, KC_UP, KC_RCTL} |
||||
}, |
||||
[_PP] = { /* Pure Pro */ |
||||
{KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSPC}, |
||||
{KC_ESC, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_ENT }, |
||||
{KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_RSFT, KC_UP, KC_RCTL}, |
||||
{KC_LCTL, MO(_DYN),KC_LGUI, KC_LALT, KM_LW, KC_SPC, KC_SPC, KM_RS, KC_RALT, KC_LEFT, KC_DOWN, KC_RGHT} |
||||
}, |
||||
[_PPG] = { /* Pure Pro: Gaming */ |
||||
{_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}, |
||||
{_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}, |
||||
{_______, _______, _______, _______, _______, _______, _______, _______, _______, DF(_RS), _______, _______}, |
||||
{_______, _______, XXXXXXX, _______, KM_RS , _______, _______, KM_LW , _______, _______, _______, _______}, |
||||
}, |
||||
[_NM] = { /* Numeric */ |
||||
{KC_TAB, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_BSPC}, |
||||
{_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}, |
||||
{KC_LSFT, _______, _______, _______, _______, _______, _______, _______, KC_COMM, KC_DOT, _______, KC_FN0 }, |
||||
{_______, _______, _______, _______, _______, KC_SPC, KC_SPC, _______, _______, _______, _______, _______} |
||||
}, |
||||
[_LW]= { /* LOWER */ |
||||
{KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_BSPC}, |
||||
{KC_ESC, LGUI(KC_1), LGUI(KC_2), LGUI(KC_3), LGUI(KC_4), LGUI(KC_5), KM_NUM, KC_UNDS, KC_PLUS, KC_LCBR, KC_RCBR, KC_PIPE}, |
||||
{_______, LGUI(KC_6), LGUI(KC_7), LGUI(KC_8), LGUI(KC_9), LGUI(KC_0), KM_SLP, KC_HOME, KC_PGDN, KC_PGUP, KC_END, KC_ENT }, |
||||
{_______, BL_TOGG, _______, _______, _______, KC_BTN1, KC_BTN1, _______, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT} |
||||
}, |
||||
[_RS]= { /* RAISE */ |
||||
{KC_GRV, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_DEL }, |
||||
{KC_ESC, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_MINS, KC_EQL, KC_LBRC, KC_RBRC, KC_BSLS}, |
||||
{_______, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11, KC_F12, DF(_QW), DF(_CM), KM_PPLR, KM_RST, KC_ENT }, |
||||
{_______, BL_STEP, _______, _______, _______, KC_BTN2, KC_BTN2, _______, KC_MPLY, KC_VOLD, KC_VOLU, _______} |
||||
}, |
||||
[_DL]= { /* DUAL */ |
||||
{_______, _______, KC_WH_U, KC_MS_U, KC_WH_D, _______, _______, KC_APP, KC_INS, _______, KC_PSCR, _______}, |
||||
{_______, _______, KC_MS_L, KC_MS_D, KC_MS_R, _______, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, KC_ACL0, KC_ACL2}, |
||||
{_______, _______, KC_BTN2, KC_BTN3, KC_BTN1, KC_WWW_BACK, KC_WWW_FORWARD, KC_MUTE, _______, _______, _______, _______}, |
||||
{_______, _______, KC_LGUI, KC_LALT, _______, _______, _______, _______, _______, _______, _______, _______} |
||||
}, |
||||
[_DYN]= { /* special */ |
||||
{_______, DYN_REC_START1, DYN_MACRO_PLAY1, _______, _______, _______, _______, _______, KC_INS, _______, KC_PSCR, KC_PAUS}, |
||||
{_______, DYN_REC_START2, DYN_MACRO_PLAY2, _______, _______, _______, _______, _______, _______, KC_CAPS, KC_SLCK, KC_NLCK}, |
||||
{KM_SHLK, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______}, |
||||
{_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______} |
||||
}, |
||||
}; |
||||
|
||||
#undef _______ |
||||
|
||||
const uint16_t PROGMEM fn_actions[] = { |
||||
ACTION_MODS_TAP_KEY(MOD_RSFT, KC_ENT), |
||||
}; |
||||
|
||||
|
||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) { |
||||
static uint16_t key_timer; |
||||
|
||||
if (!process_record_dynamic_macro(keycode, record)) { |
||||
return false; |
||||
} |
||||
|
||||
switch (keycode) { |
||||
case KM_LW: |
||||
if (record->event.pressed) { |
||||
layer_on(_LW); |
||||
} else { |
||||
layer_off(_LW); |
||||
} |
||||
update_tri_layer(_LW, _RS, _DL); |
||||
return false; |
||||
break; |
||||
case KM_RS: |
||||
if (record->event.pressed) { |
||||
layer_on(_RS); |
||||
} else { |
||||
layer_off(_RS); |
||||
} |
||||
update_tri_layer(_LW, _RS, _DL); |
||||
return false; |
||||
break; |
||||
case KM_SHLK: |
||||
register_code(KC_LSFT); |
||||
break; |
||||
case KM_RST: |
||||
if (record->event.pressed) { |
||||
key_timer = timer_read(); |
||||
} else { |
||||
if (timer_elapsed(key_timer) >= 500) { |
||||
clear_keyboard(); |
||||
backlight_toggle(); |
||||
_delay_ms(250); |
||||
backlight_toggle(); |
||||
bootloader_jump(); |
||||
} |
||||
} |
||||
break; |
||||
case KM_PPLR: |
||||
if (record->event.pressed) { |
||||
key_timer = timer_read(); |
||||
} else { |
||||
if (timer_elapsed(key_timer) >= 250) { |
||||
default_layer_set((1UL << _PP) | (1UL << _PPG)); |
||||
backlight_toggle(); |
||||
_delay_ms(100); |
||||
backlight_toggle(); |
||||
} else { |
||||
default_layer_set(1UL << _PP); |
||||
} |
||||
} |
||||
break; |
||||
case KM_NUM: |
||||
layer_on(_NM); |
||||
break; |
||||
case KM_SLP: |
||||
if (record->event.pressed) { |
||||
_delay_ms(250); |
||||
} |
||||
break; |
||||
} |
||||
|
||||
|
||||
if (record->event.pressed |
||||
&& IS_LAYER_ON(_NM) |
||||
&& keymap_key_to_keycode(_NM, record->event.key) == KC_TRNS) { |
||||
|
||||
layer_off(_NM); |
||||
} |
||||
|
||||
return true; |
||||
} |
||||
|
||||
const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt) |
||||
{ |
||||
return MACRO_NONE; |
||||
} |
Loading…
Reference in new issue