Compare commits

...

5 Commits

4 changed files with 7 additions and 7 deletions

View File

@@ -6,7 +6,6 @@
#define DEVICE_VER 0x0001 #define DEVICE_VER 0x0001
#define MANUFACTURER Deon Spengler #define MANUFACTURER Deon Spengler
#define PRODUCT Adept42 #define PRODUCT Adept42
#define DESCRIPTION A 42 key ortholinear, column staggered split keyboard
/* Set polling rate */ /* Set polling rate */
#define USB_POLLING_INTERVAL_MS 1 #define USB_POLLING_INTERVAL_MS 1
@@ -34,7 +33,6 @@
/* Enable split usb detect for Pro Micro */ /* Enable split usb detect for Pro Micro */
#define SPLIT_USB_DETECT #define SPLIT_USB_DETECT
#define SPLIT_USB_TIMEOUT 1500 #define SPLIT_USB_TIMEOUT 1500
#define NO_USB_STARTUP_CHECK
/* Reduces unintended double presses. Set 0 if debouncing is not needed */ /* Reduces unintended double presses. Set 0 if debouncing is not needed */
#define DEBOUNCE 2 #define DEBOUNCE 2

View File

@@ -46,7 +46,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
* |------+------+------+------+------+------| |------+------+------+------+------+------| * |------+------+------+------+------+------| |------+------+------+------+------+------|
* | ~ | ^ | & | $ | ( | ) | | % | 4 | 5 | 6 | * | + | * | ~ | ^ | & | $ | ( | ) | | % | 4 | 5 | 6 | * | + |
* |------+------+------+------+------+------| |------+------+------+------+------+------| * |------+------+------+------+------+------| |------+------+------+------+------+------|
* | > | \ | | | _ | [ | ] | | , | 1 | 2 | 3 | . | < | * | < | \ | | | _ | [ | ] | | , | 1 | 2 | 3 | . | > |
* `-----------------------------------------|------. ,------|-----------------------------------------' * `-----------------------------------------|------. ,------|-----------------------------------------'
* |CtlEsc|Enter |L1Held| |CtlSpc| 0 |AltBsp| * |CtlEsc|Enter |L1Held| |CtlSpc| 0 |AltBsp|
* `--------------------' `--------------------' * `--------------------' `--------------------'
@@ -54,7 +54,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
[_L1] = LAYOUT( \ [_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_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_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 \ 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) { bool get_ignore_mod_tap_interrupt(uint16_t keycode, keyrecord_t *record) {
switch (keycode) { switch (keycode) {
case LGUI_T(KC_ENT):
return true;
case LCA_T(KC_SPC): case LCA_T(KC_SPC):
return true; return true;
case RALT_T(KC_BSPC): 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) { void raw_hid_receive(uint8_t *data, uint8_t length) {
//raw_hid_send(data, length); raw_hid_send(data, length);
} }

View File

@@ -14,6 +14,6 @@ Make example for this keyboard (after setting up your build environment):
Flash firmware to Pro Micro 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). 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).

View File

@@ -22,7 +22,7 @@ MOUSEKEY_ENABLE = no
EXTRAKEY_ENABLE = yes EXTRAKEY_ENABLE = yes
CONSOLE_ENABLE = no CONSOLE_ENABLE = no
COMMAND_ENABLE = no COMMAND_ENABLE = no
DEBOUNCE_TYPE = asym_eager_defer_pk DEBOUNCE_TYPE = sym_defer_pk
NKRO_ENABLE = yes NKRO_ENABLE = yes
BACKLIGHT_ENABLE = no BACKLIGHT_ENABLE = no
MIDI_ENABLE = no MIDI_ENABLE = no