summaryrefslogtreecommitdiffstats
path: root/keyboards/crawlpad
diff options
context:
space:
mode:
authorlokher <lokher@gmail.com>2022-12-06 17:10:48 +0800
committerlokher <lokher@gmail.com>2022-12-07 15:50:49 +0800
commita336c2c5005251e4cb0f3a62ccabdb4cfccad915 (patch)
tree3c948b631a5e3b6f940dabe02fad3c7487e6f350 /keyboards/crawlpad
parent27fc28fd2ff52e079a5bc58d6aaea4c752420615 (diff)
Merge upstream master to 2022 Q4 breaking change
Diffstat (limited to 'keyboards/crawlpad')
-rwxr-xr-xkeyboards/crawlpad/config.h46
-rwxr-xr-xkeyboards/crawlpad/keymaps/default/keymap.c78
2 files changed, 0 insertions, 124 deletions
diff --git a/keyboards/crawlpad/config.h b/keyboards/crawlpad/config.h
deleted file mode 100755
index 04b7dc614e..0000000000
--- a/keyboards/crawlpad/config.h
+++ /dev/null
@@ -1,46 +0,0 @@
-#pragma once
-
-#include "config_common.h"
-
-/* key matrix size */
-#define MATRIX_ROWS 4
-#define MATRIX_COLS 4
-
-/* key matrix pins */
-#define MATRIX_ROW_PINS { F0, F1, F4, F5 }
-#define MATRIX_COL_PINS { D4, D5, D6, D7 }
-
-/* Pins for custom per-row LEDs. Should be changed to use named pins. */
-#define LED_ROW_PINS { 8, 9, 10, 11 }
-
-/* COL2ROW or ROW2COL */
-#define DIODE_DIRECTION ROW2COL
-
-/* Set 0 if debouncing isn't needed */
-#define DEBOUNCE 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() ( \
- false \
-)
-
-#ifdef RGBLIGHT_ENABLE
-#define RGB_DI_PIN D3
-#define RGBLIGHT_EFFECT_BREATHING
-#define RGBLIGHT_EFFECT_RAINBOW_MOOD
-#define RGBLIGHT_EFFECT_RAINBOW_SWIRL
-#define RGBLIGHT_EFFECT_SNAKE
-#define RGBLIGHT_EFFECT_KNIGHT
-#define RGBLIGHT_EFFECT_CHRISTMAS
-#define RGBLIGHT_EFFECT_STATIC_GRADIENT
-#define RGBLIGHT_EFFECT_RGB_TEST
-#define RGBLIGHT_EFFECT_ALTERNATING
-#define RGBLIGHT_EFFECT_TWINKLE
-#define RGBLED_NUM 3
-#endif
diff --git a/keyboards/crawlpad/keymaps/default/keymap.c b/keyboards/crawlpad/keymaps/default/keymap.c
deleted file mode 100755
index 547132bb7d..0000000000
--- a/keyboards/crawlpad/keymaps/default/keymap.c
+++ /dev/null
@@ -1,78 +0,0 @@
-#include QMK_KEYBOARD_H
-
-enum custom_keycodes {
- BL1 = SAFE_RANGE,
- BL2,
- BL3,
- BL4
-};
-
-const uint8_t LED_PINS[] = LED_ROW_PINS;
-
-const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
-
- [0] = LAYOUT_ortho_4x4(
- KC_P7, KC_P8, KC_P9, KC_PPLS,
- KC_P4, KC_P5, KC_P6, KC_PMNS,
- KC_P1, KC_P2, KC_P3, KC_PAST,
- MO(1), KC_P0, KC_PDOT, KC_ENT
- ),
-
- [1] = LAYOUT_ortho_4x4(
- KC_NUM, BL1, KC_TRNS, KC_PSLS,
- QK_BOOT, BL2, KC_TRNS, KC_TRNS,
- KC_TRNS, BL3, KC_TRNS, KC_TRNS,
- KC_TRNS, BL4, KC_TRNS, KC_TRNS
- ),
-
-};
-
-void set_led(int idx, bool enable) {
- uint8_t pin = LED_PINS[idx];
- if (enable) {
- _SFR_IO8((pin >> 4) + 2) |= _BV(pin & 0xF);
- } else {
- /* PORTx &= ~n */
- _SFR_IO8((pin >> 4) + 2) &= ~_BV(pin & 0xF);
- }
-}
-
-bool process_record_user(uint16_t keycode, keyrecord_t *record) {
- switch (keycode) {
- case BL1:
- if (record->event.pressed) {
- PORTB |= (1 << 4);
- } else {
- PORTB &= ~(1 << 4);
- }
- return false;
- case BL2:
- if (record->event.pressed) {
- PORTB |= (1 << 5);
- } else {
- PORTB &= ~(1 << 5);
- }
- return false;
- case BL3:
- if (record->event.pressed) {
- PORTB |= (1 << 6);
- } else {
- PORTB &= ~(1 << 6);
- }
- return false;
- case BL4:
- if (record->event.pressed) {
- PORTB |= (1 << 7);
- } else {
- PORTB &= ~(1 << 7);
- }
- return false;
- }
- return true;
-}
-
-void matrix_init_user(void) {
- /* set LED row pins to output and low */
- DDRB |= (1 << 4) | (1 << 5) | (1 << 6) | (1 << 7);
- PORTB &= ~(1 << 4) & ~(1 << 5) & ~(1 << 6) & ~(1 << 7);
-}