[Keyboard] Add support for PaladinPad, Arya pcb and move keyboards by KapCave into their own directory (#14194)

Co-authored-by: Drashna Jaelre <drashna@live.com>
Co-authored-by: Ryan <fauxpark@gmail.com>
Co-authored-by: Nachiket Kulkarni <nachiket_kulkarni@apple.com>
This commit is contained in:
nachie 2021-09-28 21:35:14 -07:00 committed by GitHub
parent 77e4b07fb5
commit 6779d5b990
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
65 changed files with 1504 additions and 120 deletions

View file

@ -0,0 +1,27 @@
/*
Copyright 2021 KapCave
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/>.
*/
#include "arya.h"
bool encoder_update_kb(uint8_t index, bool clockwise) {
if (!encoder_update_user(index, clockwise)) { return false; }
if (clockwise) {
tap_code(KC_VOLU);
} else {
tap_code(KC_VOLD);
}
return true;
}

View file

@ -0,0 +1,43 @@
/*
Copyright 2021 KapCave
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/>.
*/
#pragma once
#include "quantum.h"
#define LAYOUT_alice_split_bs( \
K81, K36, K37, K46, K47, K56, K57, K66, K67, K76, K77, K06, K07, K17, K26, K27, \
K80, K34, K35, K44, K45, K54, K55, K64, K65, K75, K05, K15, K16, K25, K24, \
K82, K32, K33, K43, K52, K53, K63, K73, K74, K03, K04, K13, K14, K23, \
K31, K41, K42, K51, K61, K62, K71, K72, K01, K02, K11, K12, K21, K22, \
K30, K40, K50, K60, K00, K10, K20 \
) \
{ \
{ K00 , K01 , K02 , K03 , K04 , K05 , K06 , K07 }, \
{ K10 , K11 , K12 , K13 , K14 , K15 , K16 , K17 }, \
{ K20 , K21 , K22 , K23 , K24 , K25 , K26 , K27 }, \
{ K30 , K31 , K32 , K33 , K34 , K35 , K36 , K37 }, \
{ K40 , K41 , K42 , K43 , K44 , K45 , K46 , K47 }, \
{ K50 , K51 , K52 , K53 , K54 , K55 , K56 , K57 }, \
{ K60 , K61 , K62 , K63 , K64 , K65 , K66 , K67 }, \
{ KC_NO , K71 , K72 , K73 , K74 , K75 , K76 , K77 }, \
{ K80 , K81 , K82 , KC_NO, KC_NO, KC_NO, KC_NO, KC_NO} \
}
#define LAYOUT_all LAYOUT_alice_split_bs

View file

@ -0,0 +1,25 @@
/*
Copyright 2021 KapCave
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/>.
*/
#pragma once
#define CH_CFG_ST_RESOLUTION 16
#define CH_CFG_INTERVALS_SIZE 16
#include_next <chconf.h>

View file

@ -0,0 +1,68 @@
/*
Copyright 2021 KapCave
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/>.
*/
#pragma once
/* USB Device descriptor parameter */
#define VENDOR_ID 0x4B43
#define PRODUCT_ID 0x4152
#define DEVICE_VER 0x0001
#define MANUFACTURER KapCave
#define PRODUCT Arya
/* key matrix size */
#define MATRIX_ROWS 9
#define MATRIX_COLS 8
#define MATRIX_COL_PINS { B0, B5, B4, B2, C13, F1, F0, A14}
#define MATRIX_ROW_PINS { B8, A13, B1, A15, B9, B10, B11, A0, A8 }
#define DIODE_DIRECTION COL2ROW
/* 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
#define ENCODERS_PAD_A { B12, B14, C15 }
#define ENCODERS_PAD_B { B13, B15, C14 }
#define ENCODER_RESOLUTION 2
#define TAP_CODE_DELAY 25
#define DYNAMIC_KEYMAP_LAYER_COUNT 3
/*
* 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

View file

@ -0,0 +1,23 @@
/*
Copyright 2021 KapCave
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/>.
*/
#pragma once
#define HAL_USE_PWM TRUE
#include_next <halconf.h>

View file

@ -0,0 +1,77 @@
{
"keyboard_name": "Arya",
"url": "https://kapcave.com/products/arya",
"maintainer": "nachie",
"layouts": {
"LAYOUT": {
"layout": [
{"label":"Esc", "x":2.75, "y":5.9},
{"label":"\u00ac", "x":4, "y":6.0},
{"label":"!", "x":5, "y":6.0},
{"label":"\"", "x":6, "y":6.0},
{"label":"_", "x":15.25, "y":6.0},
{"label":"+", "x":16.25, "y":6.0},
{"label":"", "x":17.25, "y":6.0},
{"label":"", "x":18.25, "y":6.0},
{"label":"Pg Up", "x":2.5, "y":6.9},
{"label":"Tab", "x":3.75, "y":7.0, "w":1.5},
{"label":"Q", "x":5.25, "y":7.0},
{"label":"P", "x":15, "y":7.0},
{"label":"{", "x":16, "y":7.0},
{"label":"}", "x":17, "y":7.0},
{"label":"|", "x":18, "y":7.0, "w":1.5},
{"label":"Pg Dn", "x":2.25, "y":7.9},
{"label":"Caps Lock", "x":3.5, "y":8.0, "w":1.75},
{"label":"A", "x":5.25, "y":8.0},
{"label":":", "x":15.5, "y":8.0},
{"label":"\"", "x":16.5, "y":8.0},
{"label":"Enter", "x":17.5, "y":8.0, "w":2.25},
{"label":"Shift", "x":3.25, "y":9.0, "w":2.25},
{"label":"Z", "x":5.5, "y":9.0},
{"label":">", "x":15.25, "y":9.0},
{"label":"?", "x":16.25, "y":9.0},
{"label":"Shift", "x":17.25, "y":9.0, "w":1.75},
{"label":"Fn", "x":19, "y":9.0},
{"label":"Ctrl", "x":3.25, "y":10.0, "w":1.5},
{"label":"Ctrl", "x":18.25, "y":10.0, "w":1.5},
{"label":"\u00a3", "x":8.25, "y":4.5},
{"label":"$", "x":9.25, "y":4.5},
{"label":"%", "x":10.25, "y":4.5},
{"label":"^", "x":11.25, "y":4.5},
{"label":"W", "x":7.75, "y":5.5},
{"label":"E", "x":8.75, "y":5.5},
{"label":"R", "x":9.75, "y":5.5},
{"label":"T", "x":10.75, "y":5.5},
{"label":"S", "x":8, "y":6.5},
{"label":"D", "x":9, "y":6.5},
{"label":"F", "x":10, "y":6.5},
{"label":"G", "x":11, "y":6.5},
{"label":"X", "x":8.5, "y":7.5},
{"label":"C", "x":9.5, "y":7.5},
{"label":"V", "x":10.5, "y":7.5},
{"label":"B", "x":11.5, "y":7.5},
{"label":"Alt", "x":8.25, "y":8.5, "w":1.5},
{"label":"", "x":9.75, "y":8.5, "w":2},
{"label":"Fn", "x":11.75, "y":8.5, "w":1.25},
{"label":"&", "x":9.5, "y":9.0},
{"label":"*", "x":10.5, "y":9.0},
{"label":"(", "x":11.5, "y":9.0},
{"label":")", "x":12.5, "y":9.0},
{"label":"Y", "x":9, "y":10.0},
{"label":"U", "x":10, "y":10.0},
{"label":"I", "x":11, "y":10.0},
{"label":"O", "x":12, "y":10.0},
{"label":"H", "x":9.25, "y":11.0},
{"label":"J", "x":10.25, "y":11.0},
{"label":"K", "x":11.25, "y":11.0},
{"label":"L", "x":12.25, "y":11.0},
{"label":"Fn", "x":8.75, "y":12.0},
{"label":"N", "x":9.75, "y":12.0},
{"label":"M", "x":10.75, "y":12.0},
{"label":"<", "x":11.75, "y":12.0},
{"label":"Shift", "x":8.75, "y":13.0, "w":2.75},
{"label":"Alt", "x":11.5, "y":13.0, "w":1.5}
]
}
}
}

View file

@ -0,0 +1,34 @@
/*
Copyright 2021 KapCave
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/>.
*/
#include QMK_KEYBOARD_H
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
LAYOUT_alice_split_bs(
KC_ESC, KC_GESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_GRV, KC_BSLS,
KC_PGUP, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC,
KC_PGDN, KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(1),
KC_LGUI, KC_LALT, KC_SPC, KC_LGUI, KC_SPC, KC_RALT, KC_RCTL
),
LAYOUT_alice_split_bs(
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_UP , _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_RGHT, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DOWN, _______, _______,
_______, _______, _______, _______, _______, _______, _______
),
};

View file

@ -0,0 +1 @@
The default layout for the KapCave Arya

View file

@ -0,0 +1,56 @@
/*
Copyright 2021 KapCave
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/>.
*/
#include QMK_KEYBOARD_H
enum layer_names {
_BASE, // Default Layer
_FN, // Fn Layer 1
_FN2, // Fn Layer 2
_FN3 // Fn Layer 3
};
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
/* QWERTY */
[_BASE] = LAYOUT_alice_split_bs(
KC_ESC, KC_GESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS, KC_EQL, KC_GRV, KC_BSLS,
KC_PGUP, KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_LBRC, KC_RBRC, KC_BSPC,
KC_PGDN, KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT, KC_ENT,
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT, MO(1),
KC_LGUI, KC_LALT, KC_SPC, KC_LGUI, KC_SPC, KC_RALT, KC_RCTL
),
/* FUNCTION */
[_FN] = LAYOUT_alice_split_bs(
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_UP , _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_LEFT, KC_RGHT, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, KC_DOWN, _______, _______,
_______, _______, _______, _______, _______, _______, _______
),
[_FN2] = LAYOUT_alice_split_bs(
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______ , _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______, _______,
_______, _______, _______, _______, _______, _______, _______
),
};

View file

@ -0,0 +1 @@
The VIA Keymap for the KapCave Arya

View file

@ -0,0 +1 @@
VIA_ENABLE = yes

View file

@ -0,0 +1,33 @@
/*
Copyright 2021 KapCave
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/>.
*/
#pragma once
#include_next <mcuconf.h>
/* enable TIM1, used for backlight PWM */
#undef STM32_PWM_USE_TIM1
#define STM32_PWM_USE_TIM1 TRUE
/* enable TIM2, used for underglow PWM driver */
#undef STM32_PWM_USE_TIM2
#define STM32_PWM_USE_TIM2 TRUE
/* move system from TIM2 (default) to TIM3 (since TIM2 is needed for underglow) */
#undef STM32_PWM_USE_TIM3
#define STM32_PWM_USE_TIM3 FALSE
#undef STM32_ST_USE_TIMER
#define STM32_ST_USE_TIMER 3

View file

@ -0,0 +1,23 @@
# KapCave Arya
Firmware for the KapCave Arya Keyboard
* Keyboard Maintainer: [KapCave](https://github.com/nachie)
* Hardware Supported: Arya PCB
* Hardware Availability: [KapCave](https://kapcave.com/products/arya-pcb)
Make example for this keyboard (after setting up your build environment):
make kapcave/arya:default
Or to make and flash:
make kapcave/arya:default:flash
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).
## Bootloader
* **Bootmagic reset**: Hold down Right Space key and plug in the keyboard
* **Physical reset button**: Briefly press the button labeled "SW_RST1" on the back of the PCB

View file

@ -0,0 +1,25 @@
# MCU name
MCU = STM32F072
# Bootloader selection
BOOTLOADER = stm32-dfu
# Build Options
# change yes to no to disable
#
BOOTMAGIC_ENABLE = yes # Enable Bootmagic Lite
MOUSEKEY_ENABLE = no # Mouse keys
EXTRAKEY_ENABLE = yes # Audio control and System control
CONSOLE_ENABLE = no # Console for debug
COMMAND_ENABLE = no # Commands for debug and configuration
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
# if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
NKRO_ENABLE = yes # USB Nkey Rollover
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow
AUDIO_ENABLE = no # Audio output
ENCODER_ENABLE = yes
# Enter lower-power sleep mode when on the ChibiOS idle thread
OPT_DEFS += -DCORTEX_ENABLE_WFI_IDLE=TRUE