Compare commits
7 Commits
7c83a44f9a
...
adept42
| Author | SHA1 | Date | |
|---|---|---|---|
| b8198e8ad7 | |||
| 6598615c8f | |||
| 1c7f6c4dd6 | |||
| 6b84490aa4 | |||
| 38457b7440 | |||
| 693f9fd37b | |||
| b9998f9396 |
@@ -17,4 +17,4 @@
|
||||
{ R30, R31, R32, KC_NO, KC_NO, KC_NO } \
|
||||
}
|
||||
|
||||
#define FW_VERSION "2.26"
|
||||
#define FW_VERSION "2.27"
|
||||
|
||||
@@ -6,7 +6,6 @@
|
||||
#define DEVICE_VER 0x0001
|
||||
#define MANUFACTURER Deon Spengler
|
||||
#define PRODUCT Adept42
|
||||
#define DESCRIPTION A 42 key ortholinear, column staggered split keyboard
|
||||
|
||||
/* Set polling rate */
|
||||
#define USB_POLLING_INTERVAL_MS 1
|
||||
@@ -34,7 +33,6 @@
|
||||
/* Enable split usb detect for Pro Micro */
|
||||
#define SPLIT_USB_DETECT
|
||||
#define SPLIT_USB_TIMEOUT 1500
|
||||
#define NO_USB_STARTUP_CHECK
|
||||
|
||||
/* Reduces unintended double presses. Set 0 if debouncing is not needed */
|
||||
#define DEBOUNCE 2
|
||||
|
||||
@@ -46,7 +46,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||
* | ~ | ^ | & | $ | ( | ) | | % | 4 | 5 | 6 | * | + |
|
||||
* |------+------+------+------+------+------| |------+------+------+------+------+------|
|
||||
* | > | \ | | | _ | [ | ] | | , | 1 | 2 | 3 | . | < |
|
||||
* | < | \ | | | _ | [ | ] | | , | 1 | 2 | 3 | . | > |
|
||||
* `-----------------------------------------|------. ,------|-----------------------------------------'
|
||||
* |CtlEsc|Enter |L1Held| |CtlSpc| 0 |AltBsp|
|
||||
* `--------------------' `--------------------'
|
||||
@@ -54,7 +54,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||
[_L1] = LAYOUT( \
|
||||
KC_GRV, KC_EXLM, KC_AT, KC_HASH, KC_LCBR, KC_RCBR, KC_EQL, KC_7, KC_8, KC_9, KC_SLSH, KC_MINS, \
|
||||
KC_TILD, KC_CIRC, KC_AMPR, KC_DLR, KC_LPRN, KC_RPRN, KC_PERC, KC_4, KC_5, KC_6, KC_PAST, KC_PPLS, \
|
||||
KC_GT, KC_BSLS, KC_PIPE, KC_UNDS, KC_LBRC, KC_RBRC, KC_COMM, KC_1, KC_2, KC_3, KC_PDOT, KC_LT, \
|
||||
KC_LT, KC_BSLS, KC_PIPE, KC_UNDS, KC_LBRC, KC_RBRC, KC_COMM, KC_1, KC_2, KC_3, KC_PDOT, KC_GT, \
|
||||
KC_TRNS, KC_TRNS, KC_TRNS, RCTL_T(KC_SPC), KC_0, KC_TRNS \
|
||||
),
|
||||
|
||||
@@ -237,6 +237,8 @@ void matrix_scan_user(void) {
|
||||
|
||||
bool get_ignore_mod_tap_interrupt(uint16_t keycode, keyrecord_t *record) {
|
||||
switch (keycode) {
|
||||
case LGUI_T(KC_ENT):
|
||||
return true;
|
||||
case LCA_T(KC_SPC):
|
||||
return true;
|
||||
case RALT_T(KC_BSPC):
|
||||
@@ -300,5 +302,5 @@ void dynamic_macro_record_end_user(int8_t direction) {
|
||||
}
|
||||
|
||||
void raw_hid_receive(uint8_t *data, uint8_t length) {
|
||||
//raw_hid_send(data, length);
|
||||
raw_hid_send(data, length);
|
||||
}
|
||||
|
||||
@@ -14,6 +14,6 @@ Make example for this keyboard (after setting up your build environment):
|
||||
|
||||
Flash firmware to Pro Micro
|
||||
|
||||
make handwired/adept42:default:avrdude
|
||||
make handwired/adept42:micro:avrdude
|
||||
|
||||
See the [build environment setup](https://docs.qmk.fm/#/getting_started_build_tools) and the [make instructions](https://docs.qmk.fm/#/getting_started_make_guide) for more information. Brand new to QMK? Start with our [Complete Newbs Guide](https://docs.qmk.fm/#/newbs).
|
||||
|
||||
@@ -22,7 +22,7 @@ MOUSEKEY_ENABLE = no
|
||||
EXTRAKEY_ENABLE = yes
|
||||
CONSOLE_ENABLE = no
|
||||
COMMAND_ENABLE = no
|
||||
DEBOUNCE_TYPE = asym_eager_defer_pk
|
||||
DEBOUNCE_TYPE = sym_defer_pk
|
||||
NKRO_ENABLE = yes
|
||||
BACKLIGHT_ENABLE = no
|
||||
MIDI_ENABLE = no
|
||||
|
||||
Reference in New Issue
Block a user