mirror of
https://github.com/qmk/qmk_userspace.git
synced 2026-07-27 03:41:55 -04:00
upload mykeebs
This commit is contained in:
parent
81df5d60d5
commit
7016439a27
309 changed files with 14203 additions and 1 deletions
87
keyboards/bastardkb/charybdis/3x5/3x5.c
Normal file
87
keyboards/bastardkb/charybdis/3x5/3x5.c
Normal file
|
|
@ -0,0 +1,87 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2020 Christopher Courtney <drashna@live.com> (@drashna)
|
||||||
|
* Copyright 2021 Quentin LEBASTARD <qlebastard@gmail.com>
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Publicw 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 "charybdis.h"
|
||||||
|
|
||||||
|
// clang-format off
|
||||||
|
#ifdef RGB_MATRIX_ENABLE
|
||||||
|
/**
|
||||||
|
* \brief LEDs index.
|
||||||
|
*
|
||||||
|
* ╭────────────────────╮ ╭────────────────────╮
|
||||||
|
* 2 3 8 9 12 30 27 26 21 20
|
||||||
|
* ├────────────────────┤ ├────────────────────┤
|
||||||
|
* 1 4 7 10 13 31 28 25 22 19
|
||||||
|
* ├────────────────────┤ ├────────────────────┤
|
||||||
|
* 0 5 6 11 14 32 29 24 23 18
|
||||||
|
* ╰────────────────────╯ ╰────────────────────╯
|
||||||
|
* 15 16 17 33 34 XX
|
||||||
|
* ╰────────────╯ ╰────────────╯
|
||||||
|
*
|
||||||
|
* Note: the LED config simulates 36 LEDs instead of the actual 35 to prevent
|
||||||
|
* confusion when testing LEDs during assembly when handedness is not set
|
||||||
|
* correctly. Those fake LEDs are bound to the physical top-left corner.
|
||||||
|
*/
|
||||||
|
led_config_t g_led_config = { {
|
||||||
|
/* Key Matrix to LED index. */
|
||||||
|
// Left split.
|
||||||
|
{ 2, 3, 8, 9, 12 }, // Top row
|
||||||
|
{ 1, 4, 7, 10, 13 }, // Middle row
|
||||||
|
{ 0, 5, 6, 11, 14 }, // Bottom row
|
||||||
|
{ 17, NO_LED, 15, 16, NO_LED }, // Thumb cluster
|
||||||
|
// Right split.
|
||||||
|
{ 20, 21, 26, 27, 30 }, // Top row
|
||||||
|
{ 19, 22, 25, 28, 31 }, // Middle row
|
||||||
|
{ 18, 23, 24, 29, 32 }, // Bottom row
|
||||||
|
{ 33, NO_LED, 34, NO_LED, NO_LED }, // Thumb cluster
|
||||||
|
}, {
|
||||||
|
/* LED index to physical position. */
|
||||||
|
// Left split.
|
||||||
|
/* index=0 */ { 0, 42 }, { 0, 21 }, { 0, 0 }, // col 1 (left most)
|
||||||
|
/* index=3 */ { 18, 0 }, { 18, 21 }, { 18, 42 }, // col 2
|
||||||
|
/* index=6 */ { 36, 42 }, { 36, 21 }, { 36, 0 },
|
||||||
|
/* index=9 */ { 54, 0 }, { 54, 21 }, { 54, 42 },
|
||||||
|
/* index=12 */ { 72, 0 }, { 72, 21 }, { 72, 42 },
|
||||||
|
/* index=15 */ { 72, 64 }, { 90, 64 }, { 108, 64 }, // Thumb cluster
|
||||||
|
// Right split.
|
||||||
|
/* index=18 */ { 224, 42 }, { 224, 21 }, { 224, 0 }, // col 10 (right most)
|
||||||
|
/* index=21 */ { 206, 0 }, { 206, 21 }, { 206, 42 }, // col 9
|
||||||
|
/* index=24 */ { 188, 42 }, { 188, 21 }, { 188, 0 },
|
||||||
|
/* index=27 */ { 170, 0 }, { 170, 21 }, { 170, 42 },
|
||||||
|
/* index=30 */ { 152, 0 }, { 152, 21 }, { 152, 42 },
|
||||||
|
/* index=33 */ { 134, 64 }, { 152, 64 }, { 0, 0 },
|
||||||
|
}, {
|
||||||
|
/* LED index to flag. */
|
||||||
|
// Left split.
|
||||||
|
/* index=0 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // col 1
|
||||||
|
/* index=3 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // col 2
|
||||||
|
/* index=6 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=9 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=12 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=15 */ LED_FLAG_MODIFIER, LED_FLAG_MODIFIER, LED_FLAG_MODIFIER, // Thumb cluster
|
||||||
|
// Right split.
|
||||||
|
/* index=18 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // col 10
|
||||||
|
/* index=21 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // col 9
|
||||||
|
/* index=24 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=27 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=30 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=33 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // Thumb cluster
|
||||||
|
} };
|
||||||
|
#endif
|
||||||
|
// clang-format on
|
||||||
54
keyboards/bastardkb/charybdis/3x5/blackpill/config.h
Normal file
54
keyboards/bastardkb/charybdis/3x5/blackpill/config.h
Normal file
|
|
@ -0,0 +1,54 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2020 Christopher Courtney <drashna@live.com> (@drashna)
|
||||||
|
* Copyright 2021 Stefan Kerkmann (@KarlK90)
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Publicw 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define SPLIT_HAND_PIN A3 // High -> left, Low -> right.
|
||||||
|
|
||||||
|
/* RGB settings. */
|
||||||
|
#define WS2812_PWM_DRIVER PWMD2
|
||||||
|
#define WS2812_PWM_CHANNEL 2
|
||||||
|
#define WS2812_PWM_PAL_MODE 1
|
||||||
|
#define WS2812_EXTERNAL_PULLUP
|
||||||
|
#define WS2812_PWM_DMA_STREAM STM32_DMA1_STREAM1
|
||||||
|
#define WS2812_PWM_DMA_CHANNEL 3
|
||||||
|
|
||||||
|
/* Serial configuration for split keyboard. */
|
||||||
|
#define SERIAL_USART_TX_PIN A9
|
||||||
|
|
||||||
|
/* CRC. */
|
||||||
|
#define CRC8_USE_TABLE
|
||||||
|
#define CRC8_OPTIMIZE_SPEED
|
||||||
|
|
||||||
|
/* SPI config for EEPROM and pmw3360 sensor. */
|
||||||
|
#define SPI_DRIVER SPID1
|
||||||
|
#define SPI_SCK_PIN A5
|
||||||
|
#define SPI_SCK_PAL_MODE 5
|
||||||
|
#define SPI_MOSI_PIN A7
|
||||||
|
#define SPI_MOSI_PAL_MODE 5
|
||||||
|
#define SPI_MISO_PIN A6
|
||||||
|
#define SPI_MISO_PAL_MODE 5
|
||||||
|
|
||||||
|
/* EEPROM config. */
|
||||||
|
#define EXTERNAL_EEPROM_SPI_SLAVE_SELECT_PIN A4
|
||||||
|
|
||||||
|
/* PMW3360 settings. */
|
||||||
|
#define POINTING_DEVICE_CS_PIN B14
|
||||||
|
#define PMW33XX_CS_DIVISOR 64
|
||||||
27
keyboards/bastardkb/charybdis/3x5/blackpill/halconf.h
Normal file
27
keyboards/bastardkb/charybdis/3x5/blackpill/halconf.h
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
/**
|
||||||
|
* Copyright 2020 Nick Brassel (tzarc)
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
#define HAL_USE_SERIAL TRUE
|
||||||
|
#define HAL_USE_SPI TRUE
|
||||||
|
#define SPI_USE_WAIT TRUE
|
||||||
|
#define SPI_SELECT_MODE SPI_SELECT_MODE_PAD
|
||||||
|
|
||||||
|
#include_next <halconf.h>
|
||||||
38
keyboards/bastardkb/charybdis/3x5/blackpill/keyboard.json
Normal file
38
keyboards/bastardkb/charybdis/3x5/blackpill/keyboard.json
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis Nano (3x5) Blackpill",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "1.0.0",
|
||||||
|
"shared_endpoint": {
|
||||||
|
"keyboard": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"eeprom": {
|
||||||
|
"driver": "spi"
|
||||||
|
},
|
||||||
|
"split": {
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "A1",
|
||||||
|
"driver": "pwm"
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"debounce_type": "asym_eager_defer_pk"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B1", "B10", "B3", "B4", "B5"],
|
||||||
|
"rows": ["A2", "B8", "A8", "B9"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"development_board": "blackpill_f411"
|
||||||
|
}
|
||||||
45
keyboards/bastardkb/charybdis/3x5/blackpill/mcuconf.h
Normal file
45
keyboards/bastardkb/charybdis/3x5/blackpill/mcuconf.h
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2020 Nick Brassel (tzarc)
|
||||||
|
* Copyright 2021 Stefan Kerkmann (@KarlK90)
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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>
|
||||||
|
|
||||||
|
#undef STM32_PWM_USE_TIM2
|
||||||
|
#define STM32_PWM_USE_TIM2 TRUE
|
||||||
|
|
||||||
|
#undef STM32_PWM_USE_TIM3
|
||||||
|
#define STM32_PWM_USE_TIM3 TRUE
|
||||||
|
|
||||||
|
#undef STM32_SPI_USE_SPI1
|
||||||
|
#define STM32_SPI_USE_SPI1 TRUE
|
||||||
|
|
||||||
|
#undef STM32_SPI_SPI1_RX_DMA_STREAM
|
||||||
|
#define STM32_SPI_SPI1_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 0)
|
||||||
|
#undef STM32_SPI_SPI1_TX_DMA_STREAM
|
||||||
|
#define STM32_SPI_SPI1_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
||||||
|
|
||||||
|
#undef STM32_SERIAL_USE_USART1
|
||||||
|
#define STM32_SERIAL_USE_USART1 TRUE
|
||||||
|
|
||||||
|
#undef STM32_GPT_USE_TIM4
|
||||||
|
#define STM32_GPT_USE_TIM4 TRUE
|
||||||
|
|
||||||
|
#undef STM32_ST_USE_TIMER
|
||||||
|
#define STM32_ST_USE_TIMER 5
|
||||||
3
keyboards/bastardkb/charybdis/3x5/blackpill/readme.md
Normal file
3
keyboards/bastardkb/charybdis/3x5/blackpill/readme.md
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Charybdis Nano (3x5) BlackPill
|
||||||
|
|
||||||
|
An ergonomic keyboard with integrated trackball, with BlackPill (STM32F411) mod.
|
||||||
5
keyboards/bastardkb/charybdis/3x5/blackpill/rules.mk
Normal file
5
keyboards/bastardkb/charybdis/3x5/blackpill/rules.mk
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint
|
||||||
|
SERIAL_DRIVER = usart
|
||||||
22
keyboards/bastardkb/charybdis/3x5/config.h
Normal file
22
keyboards/bastardkb/charybdis/3x5/config.h
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2021 Quentin LEBASTARD <qlebastard@gmail.com>
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Trackball angle adjustment. */
|
||||||
|
#define ROTATIONAL_TRANSFORM_ANGLE -25
|
||||||
62
keyboards/bastardkb/charybdis/3x5/info.json
Normal file
62
keyboards/bastardkb/charybdis/3x5/info.json
Normal file
|
|
@ -0,0 +1,62 @@
|
||||||
|
{
|
||||||
|
"manufacturer": "Bastard Keyboards",
|
||||||
|
"url": "https://bastardkb.com/charybdis-nano",
|
||||||
|
"usb": {
|
||||||
|
"pid": "0x1832",
|
||||||
|
"vid": "0xA8F8"
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"split_count": [18, 18]
|
||||||
|
},
|
||||||
|
"layout_aliases": {
|
||||||
|
"LAYOUT_charybdis_3x5": "LAYOUT"
|
||||||
|
},
|
||||||
|
"layouts": {
|
||||||
|
"LAYOUT": {
|
||||||
|
"layout": [
|
||||||
|
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||||
|
{"matrix": [0, 1], "x": 1, "y": 0},
|
||||||
|
{"matrix": [0, 2], "x": 2, "y": 0},
|
||||||
|
{"matrix": [0, 3], "x": 3, "y": 0},
|
||||||
|
{"matrix": [0, 4], "x": 4, "y": 0},
|
||||||
|
|
||||||
|
{"matrix": [4, 4], "x": 11, "y": 0},
|
||||||
|
{"matrix": [4, 3], "x": 12, "y": 0},
|
||||||
|
{"matrix": [4, 2], "x": 13, "y": 0},
|
||||||
|
{"matrix": [4, 1], "x": 14, "y": 0},
|
||||||
|
{"matrix": [4, 0], "x": 15, "y": 0},
|
||||||
|
|
||||||
|
{"matrix": [1, 0], "x": 0, "y": 1},
|
||||||
|
{"matrix": [1, 1], "x": 1, "y": 1},
|
||||||
|
{"matrix": [1, 2], "x": 2, "y": 1},
|
||||||
|
{"matrix": [1, 3], "x": 3, "y": 1},
|
||||||
|
{"matrix": [1, 4], "x": 4, "y": 1},
|
||||||
|
|
||||||
|
{"matrix": [5, 4], "x": 11, "y": 1},
|
||||||
|
{"matrix": [5, 3], "x": 12, "y": 1},
|
||||||
|
{"matrix": [5, 2], "x": 13, "y": 1},
|
||||||
|
{"matrix": [5, 1], "x": 14, "y": 1},
|
||||||
|
{"matrix": [5, 0], "x": 15, "y": 1},
|
||||||
|
|
||||||
|
{"matrix": [2, 0], "x": 0, "y": 2},
|
||||||
|
{"matrix": [2, 1], "x": 1, "y": 2},
|
||||||
|
{"matrix": [2, 2], "x": 2, "y": 2},
|
||||||
|
{"matrix": [2, 3], "x": 3, "y": 2},
|
||||||
|
{"matrix": [2, 4], "x": 4, "y": 2},
|
||||||
|
|
||||||
|
{"matrix": [6, 4], "x": 11, "y": 2},
|
||||||
|
{"matrix": [6, 3], "x": 12, "y": 2},
|
||||||
|
{"matrix": [6, 2], "x": 13, "y": 2},
|
||||||
|
{"matrix": [6, 1], "x": 14, "y": 2},
|
||||||
|
{"matrix": [6, 0], "x": 15, "y": 2},
|
||||||
|
|
||||||
|
{"matrix": [3, 2], "x": 4, "y": 3},
|
||||||
|
{"matrix": [3, 3], "x": 5, "y": 3},
|
||||||
|
{"matrix": [3, 0], "x": 6, "y": 3},
|
||||||
|
|
||||||
|
{"matrix": [7, 0], "x": 9, "y": 3},
|
||||||
|
{"matrix": [7, 2], "x": 10, "y": 3}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
71
keyboards/bastardkb/charybdis/3x5/keymaps/default/keymap.c
Normal file
71
keyboards/bastardkb/charybdis/3x5/keymaps/default/keymap.c
Normal file
|
|
@ -0,0 +1,71 @@
|
||||||
|
/**
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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 charybdis_keymap_layers {
|
||||||
|
LAYER_BASE = 0,
|
||||||
|
LAYER_LOWER,
|
||||||
|
LAYER_RAISE,
|
||||||
|
};
|
||||||
|
|
||||||
|
#define LOWER MO(LAYER_LOWER)
|
||||||
|
#define RAISE MO(LAYER_RAISE)
|
||||||
|
|
||||||
|
#define CTL_BSP CTL_T(KC_BSPC)
|
||||||
|
#define SFT_SPC SFT_T(KC_SPC)
|
||||||
|
#define GUI_ENT GUI_T(KC_ENT)
|
||||||
|
|
||||||
|
// clang-format off
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
[LAYER_BASE] = LAYOUT(
|
||||||
|
// ╭─────────────────────────────────────────────╮ ╭─────────────────────────────────────────────╮
|
||||||
|
KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P,
|
||||||
|
// ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
|
||||||
|
KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN,
|
||||||
|
// ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
|
||||||
|
KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH,
|
||||||
|
// ╰─────────────────────────────────────────────┤ ├─────────────────────────────────────────────╯
|
||||||
|
CTL_BSP, SFT_SPC, LOWER, RAISE, GUI_ENT
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
|
||||||
|
[LAYER_LOWER] = LAYOUT(
|
||||||
|
// ╭─────────────────────────────────────────────╮ ╭─────────────────────────────────────────────╮
|
||||||
|
RM_TOGG, KC_MNXT, KC_MPLY, KC_MPRV, XXXXXXX, KC_LBRC, KC_7, KC_8, KC_9, KC_RBRC,
|
||||||
|
// ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
|
||||||
|
KC_LGUI, KC_LALT, KC_LCTL, KC_LSFT, XXXXXXX, KC_PPLS, KC_4, KC_5, KC_6, KC_PMNS,
|
||||||
|
// ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, EE_CLR, QK_BOOT, KC_PAST, KC_1, KC_2, KC_3, KC_PSLS,
|
||||||
|
// ╰─────────────────────────────────────────────┤ ├─────────────────────────────────────────────╯
|
||||||
|
XXXXXXX, XXXXXXX, _______, XXXXXXX, _______
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
|
||||||
|
[LAYER_RAISE] = LAYOUT(
|
||||||
|
// ╭─────────────────────────────────────────────╮ ╭─────────────────────────────────────────────╮
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_VOLU, KC_MUTE, KC_VOLD, XXXXXXX,
|
||||||
|
// ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
|
||||||
|
KC_LEFT, KC_UP, KC_DOWN, KC_RGHT, XXXXXXX, XXXXXXX, KC_RSFT, KC_RCTL, KC_RALT, KC_RGUI,
|
||||||
|
// ├─────────────────────────────────────────────┤ ├─────────────────────────────────────────────┤
|
||||||
|
KC_HOME, KC_PGUP, KC_PGDN, KC_END, XXXXXXX, QK_BOOT, EE_CLR, XXXXXXX, XXXXXXX, XXXXXXX,
|
||||||
|
// ╰─────────────────────────────────────────────┤ ├─────────────────────────────────────────────╯
|
||||||
|
_______, _______, XXXXXXX, _______, XXXXXXX
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
};
|
||||||
|
// clang-format on
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
# Charybdis (3x5) default keymap
|
||||||
|
|
||||||
|
> :bulb: Have a look at the [`via` keymap](../via) for a more feature-rich layout.
|
||||||
|
|
||||||
|
The Charydbis (3x5) default keymap is inspired from the original [Dactyl Manuform](../../../../../handwired/dactyl_manuform) default keymap.
|
||||||
|
|
||||||
|
This layout supports RGB matrix. However, due to space constraints on the MCU, only a limited number of effect can be enabled at once. Look at the `config.h` file and enable your favorite effect.
|
||||||
15
keyboards/bastardkb/charybdis/3x5/readme.md
Normal file
15
keyboards/bastardkb/charybdis/3x5/readme.md
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
# Charybdis Nano (3x5)
|
||||||
|
|
||||||
|
An ergonomic keyboard with integrated trackball.
|
||||||
|
|
||||||
|
The Charybdis is available in 4x6 and 3x5 form factor at [bastardkb.com](https://bastardkb.com).
|
||||||
|
|
||||||
|
## Keymaps
|
||||||
|
|
||||||
|
### [`default`](keymaps/default)
|
||||||
|
|
||||||
|
A simple QWERTY layout with 4 layers.
|
||||||
|
|
||||||
|
### [`via`](keymaps/via)
|
||||||
|
|
||||||
|
A [Miryoku-inspired](https://github.com/manna-harbour/miryoku), feature-rich, keymap with VIA support.
|
||||||
25
keyboards/bastardkb/charybdis/3x5/v1/elitec/config.h
Normal file
25
keyboards/bastardkb/charybdis/3x5/v1/elitec/config.h
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2020 Christopher Courtney <drashna@live.com> (@drashna)
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define MASTER_RIGHT
|
||||||
|
|
||||||
|
/* PMW3360 settings. */
|
||||||
|
#define POINTING_DEVICE_CS_PIN B0
|
||||||
39
keyboards/bastardkb/charybdis/3x5/v1/elitec/keyboard.json
Normal file
39
keyboards/bastardkb/charybdis/3x5/v1/elitec/keyboard.json
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis Nano (3x5) Elite-C",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "1.0.0"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"lto": true
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "D3"
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["C7", "F0", "D7", "E6", "B4"],
|
||||||
|
"rows": ["B7", "C6", "D4", "B5"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
|
"soft_serial_pin": "D2",
|
||||||
|
"matrix_pins": {
|
||||||
|
"right": {
|
||||||
|
"cols": ["C7", "B7", "D7", "E6", "B4"],
|
||||||
|
"rows": ["F0", "C6", "D4", "B5"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"processor": "atmega32u4",
|
||||||
|
"bootloader": "atmel-dfu"
|
||||||
|
}
|
||||||
4
keyboards/bastardkb/charybdis/3x5/v1/elitec/rules.mk
Normal file
4
keyboards/bastardkb/charybdis/3x5/v1/elitec/rules.mk
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint
|
||||||
24
keyboards/bastardkb/charybdis/3x5/v2/elitec/config.h
Normal file
24
keyboards/bastardkb/charybdis/3x5/v2/elitec/config.h
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define MASTER_RIGHT
|
||||||
|
|
||||||
|
/* PMW3360 settings. */
|
||||||
|
#define POINTING_DEVICE_CS_PIN F0
|
||||||
33
keyboards/bastardkb/charybdis/3x5/v2/elitec/keyboard.json
Normal file
33
keyboards/bastardkb/charybdis/3x5/v2/elitec/keyboard.json
Normal file
|
|
@ -0,0 +1,33 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis Nano (3x5) Elite-C",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "2.0.0"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"lto": true
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "D3"
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["F5", "B6", "D7", "E6", "B4"],
|
||||||
|
"rows": ["F7", "C6", "D4", "B5"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
|
"soft_serial_pin": "D2"
|
||||||
|
},
|
||||||
|
"processor": "atmega32u4",
|
||||||
|
"bootloader": "atmel-dfu"
|
||||||
|
}
|
||||||
4
keyboards/bastardkb/charybdis/3x5/v2/elitec/rules.mk
Normal file
4
keyboards/bastardkb/charybdis/3x5/v2/elitec/rules.mk
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint
|
||||||
38
keyboards/bastardkb/charybdis/3x5/v2/splinky_2/config.h
Normal file
38
keyboards/bastardkb/charybdis/3x5/v2/splinky_2/config.h
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define MASTER_RIGHT
|
||||||
|
|
||||||
|
// To use the handedness pin, resistors need to be installed on the adapter PCB.
|
||||||
|
// If so, uncomment the following code, and undefine MASTER_RIGHT above.
|
||||||
|
// #define SPLIT_HAND_PIN GP13
|
||||||
|
// #define SPLIT_HAND_PIN_LOW_IS_LEFT // High -> right, Low -> left.
|
||||||
|
|
||||||
|
/* SPI & PMW3360 settings. */
|
||||||
|
#define SPI_DRIVER SPID0
|
||||||
|
#define SPI_SCK_PIN GP18
|
||||||
|
#define SPI_MISO_PIN GP20
|
||||||
|
#define SPI_MOSI_PIN GP19
|
||||||
|
#define POINTING_DEVICE_CS_PIN GP14
|
||||||
|
|
||||||
|
/* Reset. */
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP17
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 1000U
|
||||||
31
keyboards/bastardkb/charybdis/3x5/v2/splinky_2/keyboard.json
Normal file
31
keyboards/bastardkb/charybdis/3x5/v2/splinky_2/keyboard.json
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis Nano (3x5) Splinky",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "2.0.0"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["GP28", "GP15", "GP6", "GP7", "GP8"],
|
||||||
|
"rows": ["GP26", "GP5", "GP4", "GP9"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
|
"soft_serial_pin": "GP1"
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "GP0",
|
||||||
|
"driver": "vendor"
|
||||||
|
},
|
||||||
|
"processor": "RP2040",
|
||||||
|
"bootloader": "rp2040"
|
||||||
|
}
|
||||||
23
keyboards/bastardkb/charybdis/3x5/v2/splinky_2/mcuconf.h
Normal file
23
keyboards/bastardkb/charybdis/3x5/v2/splinky_2/mcuconf.h
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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>
|
||||||
|
|
||||||
|
#undef RP_SPI_USE_SPI0
|
||||||
|
#define RP_SPI_USE_SPI0 TRUE
|
||||||
5
keyboards/bastardkb/charybdis/3x5/v2/splinky_2/readme.md
Normal file
5
keyboards/bastardkb/charybdis/3x5/v2/splinky_2/readme.md
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Splinky controller
|
||||||
|
|
||||||
|
The splinky is a Pro-Micro/Elite-C replacement with USB-C and RP2040.
|
||||||
|
|
||||||
|
See [plut0nium/0xB2](https://github.com/plut0nium/0xB2/#releases) to figure out the right version for you (v2 or v3).
|
||||||
5
keyboards/bastardkb/charybdis/3x5/v2/splinky_2/rules.mk
Normal file
5
keyboards/bastardkb/charybdis/3x5/v2/splinky_2/rules.mk
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
|
||||||
|
SERIAL_DRIVER = vendor
|
||||||
38
keyboards/bastardkb/charybdis/3x5/v2/splinky_3/config.h
Normal file
38
keyboards/bastardkb/charybdis/3x5/v2/splinky_3/config.h
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define MASTER_RIGHT
|
||||||
|
|
||||||
|
// To use the handedness pin, resistors need to be installed on the adapter PCB.
|
||||||
|
// If so, uncomment the following code, and undefine MASTER_RIGHT above.
|
||||||
|
// #define SPLIT_HAND_PIN GP15
|
||||||
|
// #define SPLIT_HAND_PIN_LOW_IS_LEFT // High -> right, Low -> left.
|
||||||
|
|
||||||
|
/* SPI & PMW3360 settings. */
|
||||||
|
#define SPI_DRIVER SPID0
|
||||||
|
#define SPI_SCK_PIN GP22
|
||||||
|
#define SPI_MISO_PIN GP20
|
||||||
|
#define SPI_MOSI_PIN GP23
|
||||||
|
#define POINTING_DEVICE_CS_PIN GP16
|
||||||
|
|
||||||
|
/* Reset. */
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP17
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 1000U
|
||||||
31
keyboards/bastardkb/charybdis/3x5/v2/splinky_3/keyboard.json
Normal file
31
keyboards/bastardkb/charybdis/3x5/v2/splinky_3/keyboard.json
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis Nano (3x5) Splinky",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "2.0.0"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["GP28", "GP21", "GP6", "GP7", "GP8"],
|
||||||
|
"rows": ["GP26", "GP5", "GP4", "GP9"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
|
"soft_serial_pin": "GP1"
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "GP0",
|
||||||
|
"driver": "vendor"
|
||||||
|
},
|
||||||
|
"processor": "RP2040",
|
||||||
|
"bootloader": "rp2040"
|
||||||
|
}
|
||||||
23
keyboards/bastardkb/charybdis/3x5/v2/splinky_3/mcuconf.h
Normal file
23
keyboards/bastardkb/charybdis/3x5/v2/splinky_3/mcuconf.h
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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>
|
||||||
|
|
||||||
|
#undef RP_SPI_USE_SPI0
|
||||||
|
#define RP_SPI_USE_SPI0 TRUE
|
||||||
5
keyboards/bastardkb/charybdis/3x5/v2/splinky_3/readme.md
Normal file
5
keyboards/bastardkb/charybdis/3x5/v2/splinky_3/readme.md
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Splinky controller
|
||||||
|
|
||||||
|
The splinky is a Pro-Micro/Elite-C replacement with USB-C and RP2040.
|
||||||
|
|
||||||
|
See [plut0nium/0xB2](https://github.com/plut0nium/0xB2/#releases) to figure out the right version for you (v2 or v3).
|
||||||
5
keyboards/bastardkb/charybdis/3x5/v2/splinky_3/rules.mk
Normal file
5
keyboards/bastardkb/charybdis/3x5/v2/splinky_3/rules.mk
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
|
||||||
|
SERIAL_DRIVER = vendor
|
||||||
52
keyboards/bastardkb/charybdis/3x5/v2/stemcell/config.h
Normal file
52
keyboards/bastardkb/charybdis/3x5/v2/stemcell/config.h
Normal file
|
|
@ -0,0 +1,52 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define MASTER_RIGHT
|
||||||
|
|
||||||
|
// To use the handedness pin, resistors need to be installed on the adapter PCB.
|
||||||
|
// If so, uncomment the following code, and undefine MASTER_RIGHT above.
|
||||||
|
// #define A0 PAL_LINE(GPIOA, 0)
|
||||||
|
// #define SPLIT_HAND_PIN A0
|
||||||
|
// #define SPLIT_HAND_PIN_LOW_IS_LEFT // High -> right, Low -> left.
|
||||||
|
|
||||||
|
/* RGB settings. */
|
||||||
|
#define WS2812_PWM_DRIVER PWMD2
|
||||||
|
#define WS2812_PWM_CHANNEL 4
|
||||||
|
#define WS2812_PWM_PAL_MODE 1
|
||||||
|
#define WS2812_PWM_DMA_STREAM STM32_DMA1_STREAM7
|
||||||
|
#define WS2812_PWM_DMA_CHANNEL 3
|
||||||
|
|
||||||
|
/* CRC. */
|
||||||
|
#define CRC8_USE_TABLE
|
||||||
|
#define CRC8_OPTIMIZE_SPEED
|
||||||
|
|
||||||
|
/* SPI config for pmw3360 sensor. */
|
||||||
|
#define SPI_DRIVER SPID1
|
||||||
|
#define SPI_SCK_PIN A5
|
||||||
|
#define SPI_SCK_PAL_MODE 5
|
||||||
|
#define SPI_MOSI_PIN A7
|
||||||
|
#define SPI_MOSI_PAL_MODE 5
|
||||||
|
#define SPI_MISO_PIN A6
|
||||||
|
#define SPI_MISO_PAL_MODE 5
|
||||||
|
|
||||||
|
/* PMW3360 settings. */
|
||||||
|
#define POINTING_DEVICE_CS_PIN A1
|
||||||
|
#define PMW3360_CS_MODE 3
|
||||||
|
#define PMW3360_CS_DIVISOR 64
|
||||||
24
keyboards/bastardkb/charybdis/3x5/v2/stemcell/halconf.h
Normal file
24
keyboards/bastardkb/charybdis/3x5/v2/stemcell/halconf.h
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
#define HAL_USE_SERIAL TRUE
|
||||||
|
#define HAL_USE_SPI TRUE
|
||||||
|
|
||||||
|
#include_next <halconf.h>
|
||||||
36
keyboards/bastardkb/charybdis/3x5/v2/stemcell/keyboard.json
Normal file
36
keyboards/bastardkb/charybdis/3x5/v2/stemcell/keyboard.json
Normal file
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis Nano (3x5) STeMCell",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "2.0.0",
|
||||||
|
"shared_endpoint": {
|
||||||
|
"keyboard": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "A2",
|
||||||
|
"driver": "pwm"
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"debounce_type": "asym_eager_defer_pk"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B2", "A4", "B4", "B5", "B8"],
|
||||||
|
"rows": ["B0", "B3", "A15", "B9"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
|
"soft_serial_pin": "A3"
|
||||||
|
},
|
||||||
|
"development_board": "stemcell"
|
||||||
|
}
|
||||||
32
keyboards/bastardkb/charybdis/3x5/v2/stemcell/mcuconf.h
Normal file
32
keyboards/bastardkb/charybdis/3x5/v2/stemcell/mcuconf.h
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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>
|
||||||
|
|
||||||
|
#undef STM32_SPI_USE_SPI1
|
||||||
|
#define STM32_SPI_USE_SPI1 TRUE
|
||||||
|
|
||||||
|
#undef STM32_SERIAL_USE_USART1
|
||||||
|
#define STM32_SERIAL_USE_USART1 FALSE
|
||||||
|
|
||||||
|
#undef STM32_PWM_USE_TIM2
|
||||||
|
#define STM32_PWM_USE_TIM2 TRUE
|
||||||
|
|
||||||
|
#undef STM32_ST_USE_TIMER
|
||||||
|
#define STM32_ST_USE_TIMER 5
|
||||||
6
keyboards/bastardkb/charybdis/3x5/v2/stemcell/rules.mk
Normal file
6
keyboards/bastardkb/charybdis/3x5/v2/stemcell/rules.mk
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint
|
||||||
|
|
||||||
|
SERIAL_DRIVER = usart
|
||||||
91
keyboards/bastardkb/charybdis/3x6/3x6.c
Normal file
91
keyboards/bastardkb/charybdis/3x6/3x6.c
Normal file
|
|
@ -0,0 +1,91 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Publicw 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 "charybdis.h"
|
||||||
|
|
||||||
|
// clang-format off
|
||||||
|
#ifdef RGB_MATRIX_ENABLE
|
||||||
|
/**
|
||||||
|
* \brief LEDs index.
|
||||||
|
*
|
||||||
|
# 0,0 14 28 42 56 70 84 98 126 140 154 168 182 196 210 224,0
|
||||||
|
# 0,0 15 30 45 60 75 90 105 119 134 149 164 179 194 209 224,0
|
||||||
|
* ╭────────────────────────╮ ╭────────────────────────╮
|
||||||
|
* 0 5 6 11 12 15 36 33 32 27 26 21
|
||||||
|
* ├────────────────────────┤ ├────────────────────────┤
|
||||||
|
* 1 4 7 10 13 16 37 34 31 28 25 22
|
||||||
|
* ├────────────────────────┤ ├────────────────────────┤
|
||||||
|
* 2 3 8 9 14 17 38 35 30 29 24 23
|
||||||
|
* ╰────────────────────────╯ ╰────────────────────────╯
|
||||||
|
* 18 19 20 39 40 XX
|
||||||
|
* ╰────────────╯ ╰────────────╯
|
||||||
|
*
|
||||||
|
* Note: the LED config simulates 42 LEDs instead of the actual 41 to prevent
|
||||||
|
* confusion when testing LEDs during assembly when handedness is not set
|
||||||
|
* correctly. Those fake LEDs are bound to the physical top-left corner.
|
||||||
|
*/
|
||||||
|
led_config_t g_led_config = { {
|
||||||
|
/* Key Matrix to LED index. */
|
||||||
|
// Left split.
|
||||||
|
{ 0, 5, 6, 11, 12, 15 }, // Top row
|
||||||
|
{ 1, 4, 7, 10, 13, 16 }, // Middle row
|
||||||
|
{ 2, 3, 8, 9, 14, 17 }, // Bottom row
|
||||||
|
{ NO_LED, 20, NO_LED, 18, 19, NO_LED }, // Thumb cluster
|
||||||
|
// Right split.
|
||||||
|
{ 21, 26, 27, 32, 33, 36 }, // Top row
|
||||||
|
{ 22, 25, 28, 31, 34, 37 }, // Middle row
|
||||||
|
{ 23, 24, 29, 30, 35, 38 }, // Bottom row
|
||||||
|
{ NO_LED, 41, NO_LED, 39, 40, NO_LED }, // Thumb cluster
|
||||||
|
}, {
|
||||||
|
/* LED index to physical position. */
|
||||||
|
// Left split.
|
||||||
|
/* index=0 */ { 0, 0 }, { 0, 21 }, { 0, 42 }, // col 1 (left most)
|
||||||
|
/* index=3 */ { 15, 42 }, { 15, 21 }, { 15, 0 }, // col 2
|
||||||
|
/* index=6 */ { 30, 0 }, { 30, 21 }, { 30, 42 },
|
||||||
|
/* index=9 */ { 45, 42 }, { 45, 21 }, { 45, 0 },
|
||||||
|
/* index=12 */ { 60, 0 }, { 60, 21 }, { 60, 42 },
|
||||||
|
/* index=15 */ { 75, 0 }, { 75, 21 }, { 75, 42 },
|
||||||
|
/* index=18 */ { 75, 64 }, { 90, 64 }, { 105, 64 }, // Thumb cluster
|
||||||
|
// Right split.
|
||||||
|
/* index=21 */ { 224, 0 }, { 224, 21 }, { 224, 42 }, // col 12 (right most)
|
||||||
|
/* index=24 */ { 209, 42 }, { 209, 21 }, { 209, 0 }, // col 10
|
||||||
|
/* index=27 */ { 194, 0 }, { 194, 21 }, { 194, 42 },
|
||||||
|
/* index=30 */ { 179, 42 }, { 179, 21 }, { 179, 0 },
|
||||||
|
/* index=33 */ { 164, 0 }, { 164, 21 }, { 164, 42 },
|
||||||
|
/* index=36 */ { 149, 0 }, { 149, 21 }, { 149, 42 },
|
||||||
|
/* index=39 */ { 119, 64 }, { 134, 64 }, { 0, 0 }, // Thumb cluster
|
||||||
|
}, {
|
||||||
|
/* LED index to flag. */
|
||||||
|
// Left split.
|
||||||
|
/* index=0 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // col 1
|
||||||
|
/* index=3 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // col 2
|
||||||
|
/* index=6 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=9 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=12 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=15 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=18 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // Thumb cluster
|
||||||
|
// Right split.
|
||||||
|
/* index=21 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // col 10
|
||||||
|
/* index=24 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // col 9
|
||||||
|
/* index=27 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=30 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=33 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=36 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=39 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // Thumb cluster
|
||||||
|
} };
|
||||||
|
#endif
|
||||||
|
// clang-format on
|
||||||
52
keyboards/bastardkb/charybdis/3x6/blackpill/config.h
Normal file
52
keyboards/bastardkb/charybdis/3x6/blackpill/config.h
Normal file
|
|
@ -0,0 +1,52 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Publicw 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define SPLIT_HAND_PIN A3 // High -> left, Low -> right.
|
||||||
|
|
||||||
|
/* RGB settings. */
|
||||||
|
#define WS2812_PWM_DRIVER PWMD2
|
||||||
|
#define WS2812_PWM_CHANNEL 2
|
||||||
|
#define WS2812_PWM_PAL_MODE 1
|
||||||
|
#define WS2812_EXTERNAL_PULLUP
|
||||||
|
#define WS2812_PWM_DMA_STREAM STM32_DMA1_STREAM1
|
||||||
|
#define WS2812_PWM_DMA_CHANNEL 3
|
||||||
|
|
||||||
|
/* Serial configuration for split keyboard. */
|
||||||
|
#define SERIAL_USART_TX_PIN A9
|
||||||
|
|
||||||
|
/* CRC. */
|
||||||
|
#define CRC8_USE_TABLE
|
||||||
|
#define CRC8_OPTIMIZE_SPEED
|
||||||
|
|
||||||
|
/* SPI config for EEPROM and pmw3360 sensor. */
|
||||||
|
#define SPI_DRIVER SPID1
|
||||||
|
#define SPI_SCK_PIN A5
|
||||||
|
#define SPI_SCK_PAL_MODE 5
|
||||||
|
#define SPI_MOSI_PIN A7
|
||||||
|
#define SPI_MOSI_PAL_MODE 5
|
||||||
|
#define SPI_MISO_PIN A6
|
||||||
|
#define SPI_MISO_PAL_MODE 5
|
||||||
|
|
||||||
|
/* EEPROM config. */
|
||||||
|
#define EXTERNAL_EEPROM_SPI_SLAVE_SELECT_PIN A4
|
||||||
|
|
||||||
|
/* PMW3360 settings. */
|
||||||
|
#define POINTING_DEVICE_CS_PIN B14
|
||||||
|
#define PMW33XX_CS_DIVISOR 64
|
||||||
27
keyboards/bastardkb/charybdis/3x6/blackpill/halconf.h
Normal file
27
keyboards/bastardkb/charybdis/3x6/blackpill/halconf.h
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
/**
|
||||||
|
* Copyright 2020 Nick Brassel (tzarc)
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
#define HAL_USE_SERIAL TRUE
|
||||||
|
#define HAL_USE_SPI TRUE
|
||||||
|
#define SPI_USE_WAIT TRUE
|
||||||
|
#define SPI_SELECT_MODE SPI_SELECT_MODE_PAD
|
||||||
|
|
||||||
|
#include_next <halconf.h>
|
||||||
38
keyboards/bastardkb/charybdis/3x6/blackpill/keyboard.json
Normal file
38
keyboards/bastardkb/charybdis/3x6/blackpill/keyboard.json
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis Mini (3x6) Blackpill",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "1.0.0",
|
||||||
|
"shared_endpoint": {
|
||||||
|
"keyboard": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"eeprom": {
|
||||||
|
"driver": "spi"
|
||||||
|
},
|
||||||
|
"split": {
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "A1",
|
||||||
|
"driver": "pwm"
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"debounce_type": "asym_eager_defer_pk"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B0", "B1", "B10", "B3", "B4", "B5"],
|
||||||
|
"rows": ["A2", "B8", "A8", "B9"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"development_board": "blackpill_f411"
|
||||||
|
}
|
||||||
45
keyboards/bastardkb/charybdis/3x6/blackpill/mcuconf.h
Normal file
45
keyboards/bastardkb/charybdis/3x6/blackpill/mcuconf.h
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2020 Nick Brassel (tzarc)
|
||||||
|
* Copyright 2021 Stefan Kerkmann (@KarlK90)
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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>
|
||||||
|
|
||||||
|
#undef STM32_PWM_USE_TIM2
|
||||||
|
#define STM32_PWM_USE_TIM2 TRUE
|
||||||
|
|
||||||
|
#undef STM32_PWM_USE_TIM3
|
||||||
|
#define STM32_PWM_USE_TIM3 TRUE
|
||||||
|
|
||||||
|
#undef STM32_SPI_USE_SPI1
|
||||||
|
#define STM32_SPI_USE_SPI1 TRUE
|
||||||
|
|
||||||
|
#undef STM32_SPI_SPI1_RX_DMA_STREAM
|
||||||
|
#define STM32_SPI_SPI1_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 0)
|
||||||
|
#undef STM32_SPI_SPI1_TX_DMA_STREAM
|
||||||
|
#define STM32_SPI_SPI1_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
||||||
|
|
||||||
|
#undef STM32_SERIAL_USE_USART1
|
||||||
|
#define STM32_SERIAL_USE_USART1 TRUE
|
||||||
|
|
||||||
|
#undef STM32_GPT_USE_TIM4
|
||||||
|
#define STM32_GPT_USE_TIM4 TRUE
|
||||||
|
|
||||||
|
#undef STM32_ST_USE_TIMER
|
||||||
|
#define STM32_ST_USE_TIMER 5
|
||||||
3
keyboards/bastardkb/charybdis/3x6/blackpill/readme.md
Normal file
3
keyboards/bastardkb/charybdis/3x6/blackpill/readme.md
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Charybdis Mini (3x6) BlackPill
|
||||||
|
|
||||||
|
An ergonomic keyboard with integrated trackball, with BlackPill (STM32F411) mod.
|
||||||
6
keyboards/bastardkb/charybdis/3x6/blackpill/rules.mk
Normal file
6
keyboards/bastardkb/charybdis/3x6/blackpill/rules.mk
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint
|
||||||
|
|
||||||
|
SERIAL_DRIVER = usart
|
||||||
22
keyboards/bastardkb/charybdis/3x6/config.h
Normal file
22
keyboards/bastardkb/charybdis/3x6/config.h
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2021 Quentin LEBASTARD <qlebastard@gmail.com>
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Trackball angle adjustment. */
|
||||||
|
#define ROTATIONAL_TRANSFORM_ANGLE -25
|
||||||
66
keyboards/bastardkb/charybdis/3x6/info.json
Normal file
66
keyboards/bastardkb/charybdis/3x6/info.json
Normal file
|
|
@ -0,0 +1,66 @@
|
||||||
|
{
|
||||||
|
"url": "https://bastardkb.com",
|
||||||
|
"usb": {
|
||||||
|
"pid": "0x1834"
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"split_count": [21, 21]
|
||||||
|
},
|
||||||
|
"layout_aliases": {
|
||||||
|
"LAYOUT_charybdis_3x6": "LAYOUT"
|
||||||
|
},
|
||||||
|
"layouts": {
|
||||||
|
"LAYOUT": {
|
||||||
|
"layout": [
|
||||||
|
{"label": "L00", "matrix": [0, 0], "x": 0, "y": 0},
|
||||||
|
{"label": "L01", "matrix": [0, 1], "x": 1, "y": 0},
|
||||||
|
{"label": "L02", "matrix": [0, 2], "x": 2, "y": 0},
|
||||||
|
{"label": "L03", "matrix": [0, 3], "x": 3, "y": 0},
|
||||||
|
{"label": "L04", "matrix": [0, 4], "x": 4, "y": 0},
|
||||||
|
{"label": "L05", "matrix": [0, 5], "x": 5, "y": 0},
|
||||||
|
|
||||||
|
{"label": "R00", "matrix": [4, 5], "x": 11, "y": 0},
|
||||||
|
{"label": "R01", "matrix": [4, 4], "x": 12, "y": 0},
|
||||||
|
{"label": "R02", "matrix": [4, 3], "x": 13, "y": 0},
|
||||||
|
{"label": "R03", "matrix": [4, 2], "x": 14, "y": 0},
|
||||||
|
{"label": "R04", "matrix": [4, 1], "x": 15, "y": 0},
|
||||||
|
{"label": "R05", "matrix": [4, 0], "x": 16, "y": 0},
|
||||||
|
|
||||||
|
{"label": "L10", "matrix": [1, 0], "x": 0, "y": 1},
|
||||||
|
{"label": "L11", "matrix": [1, 1], "x": 1, "y": 1},
|
||||||
|
{"label": "L12", "matrix": [1, 2], "x": 2, "y": 1},
|
||||||
|
{"label": "L13", "matrix": [1, 3], "x": 3, "y": 1},
|
||||||
|
{"label": "L14", "matrix": [1, 4], "x": 4, "y": 1},
|
||||||
|
{"label": "L15", "matrix": [1, 5], "x": 5, "y": 1},
|
||||||
|
|
||||||
|
{"label": "R10", "matrix": [5, 5], "x": 11, "y": 1},
|
||||||
|
{"label": "R11", "matrix": [5, 4], "x": 12, "y": 1},
|
||||||
|
{"label": "R12", "matrix": [5, 3], "x": 13, "y": 1},
|
||||||
|
{"label": "R13", "matrix": [5, 2], "x": 14, "y": 1},
|
||||||
|
{"label": "R14", "matrix": [5, 1], "x": 15, "y": 1},
|
||||||
|
{"label": "R15", "matrix": [5, 0], "x": 16, "y": 1},
|
||||||
|
|
||||||
|
{"label": "L20", "matrix": [2, 0], "x": 0, "y": 2},
|
||||||
|
{"label": "L21", "matrix": [2, 1], "x": 1, "y": 2},
|
||||||
|
{"label": "L22", "matrix": [2, 2], "x": 2, "y": 2},
|
||||||
|
{"label": "L23", "matrix": [2, 3], "x": 3, "y": 2},
|
||||||
|
{"label": "L24", "matrix": [2, 4], "x": 4, "y": 2},
|
||||||
|
{"label": "L25", "matrix": [2, 5], "x": 5, "y": 2},
|
||||||
|
|
||||||
|
{"label": "R20", "matrix": [6, 5], "x": 11, "y": 2},
|
||||||
|
{"label": "R21", "matrix": [6, 4], "x": 12, "y": 2},
|
||||||
|
{"label": "R22", "matrix": [6, 3], "x": 13, "y": 2},
|
||||||
|
{"label": "R23", "matrix": [6, 2], "x": 14, "y": 2},
|
||||||
|
{"label": "R24", "matrix": [6, 1], "x": 15, "y": 2},
|
||||||
|
{"label": "R25", "matrix": [6, 0], "x": 16, "y": 2},
|
||||||
|
|
||||||
|
{"label": "L33", "matrix": [3, 3], "x": 5, "y": 3},
|
||||||
|
{"label": "L34", "matrix": [3, 4], "x": 6, "y": 3},
|
||||||
|
{"label": "L31", "matrix": [3, 1], "x": 7, "y": 3},
|
||||||
|
|
||||||
|
{"label": "R31", "matrix": [7, 1], "x": 9, "y": 3},
|
||||||
|
{"label": "R33", "matrix": [7, 3], "x": 10, "y": 3}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
66
keyboards/bastardkb/charybdis/3x6/keymaps/default/keymap.c
Normal file
66
keyboards/bastardkb/charybdis/3x6/keymaps/default/keymap.c
Normal file
|
|
@ -0,0 +1,66 @@
|
||||||
|
/**
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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 charybdis_keymap_layers {
|
||||||
|
LAYER_BASE = 0,
|
||||||
|
LAYER_LOWER,
|
||||||
|
LAYER_RAISE,
|
||||||
|
};
|
||||||
|
|
||||||
|
#define LOWER MO(LAYER_LOWER)
|
||||||
|
#define RAISE MO(LAYER_RAISE)
|
||||||
|
|
||||||
|
// clang-format off
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
[LAYER_BASE] = LAYOUT(
|
||||||
|
// ╭──────────────────────────────────────────────────────╮ ╭──────────────────────────────────────────────────────╮
|
||||||
|
KC_LGUI, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_RGUI,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
KC_LCTL, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_RCTL,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
KC_LSFT, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_RSFT,
|
||||||
|
// ╰──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────╯
|
||||||
|
KC_BSPC, KC_SPC, LOWER, RAISE, KC_ENT
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
|
||||||
|
[LAYER_LOWER] = LAYOUT(
|
||||||
|
// ╭──────────────────────────────────────────────────────╮ ╭──────────────────────────────────────────────────────╮
|
||||||
|
XXXXXXX, RM_TOGG, KC_MNXT, KC_MPLY, KC_MPRV, XXXXXXX, KC_LBRC, KC_7, KC_8, KC_9, KC_RBRC, XXXXXXX,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
XXXXXXX, KC_LGUI, KC_LALT, KC_LCTL, KC_LSFT, XXXXXXX, KC_PPLS, KC_4, KC_5, KC_6, KC_PMNS, XXXXXXX,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, EE_CLR, QK_BOOT, KC_PAST, KC_1, KC_2, KC_3, KC_PSLS, XXXXXXX,
|
||||||
|
// ╰──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────╯
|
||||||
|
XXXXXXX, XXXXXXX, _______, XXXXXXX, _______
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
|
||||||
|
[LAYER_RAISE] = LAYOUT(
|
||||||
|
// ╭──────────────────────────────────────────────────────╮ ╭──────────────────────────────────────────────────────╮
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_VOLU, KC_MUTE, KC_VOLD, XXXXXXX, XXXXXXX,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
XXXXXXX, KC_LEFT, KC_UP, KC_DOWN, KC_RGHT, XXXXXXX, XXXXXXX, KC_RSFT, KC_RCTL, KC_RALT, KC_RGUI, XXXXXXX,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
XXXXXXX, KC_HOME, KC_PGUP, KC_PGDN, KC_END, XXXXXXX, QK_BOOT, EE_CLR, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX,
|
||||||
|
// ╰──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────╯
|
||||||
|
_______, _______, XXXXXXX, _______, XXXXXXX
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
};
|
||||||
|
// clang-format on
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
# Charybdis Mini (3x6) default keymap
|
||||||
|
|
||||||
|
> :bulb: Have a look at the [`via` keymap](../via) for a more feature-rich layout.
|
||||||
|
|
||||||
|
The Charydbis Mini (3x6) default keymap is inspired from the original [Dactyl Manuform](../../../../../handwired/dactyl_manuform) default keymap.
|
||||||
|
|
||||||
|
This layout supports RGB matrix. However, due to space constraints on the MCU, only a limited number of effect can be enabled at once. Look at the `config.h` file and enable your favorite effect.
|
||||||
15
keyboards/bastardkb/charybdis/3x6/readme.md
Normal file
15
keyboards/bastardkb/charybdis/3x6/readme.md
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
# Charybdis Nano (3x6)
|
||||||
|
|
||||||
|
An ergonomic keyboard with integrated trackball.
|
||||||
|
|
||||||
|
The Charybdis is available in 4x6, 3x6 and 3x5 form factor at [bastardkb.com](https://bastardkb.com).
|
||||||
|
|
||||||
|
## Keymaps
|
||||||
|
|
||||||
|
### [`default`](keymaps/default)
|
||||||
|
|
||||||
|
A simple QWERTY layout with 4 layers.
|
||||||
|
|
||||||
|
### [`via`](keymaps/via)
|
||||||
|
|
||||||
|
A [Miryoku-inspired](https://github.com/manna-harbour/miryoku), feature-rich, keymap with VIA support.
|
||||||
24
keyboards/bastardkb/charybdis/3x6/v1/elitec/config.h
Normal file
24
keyboards/bastardkb/charybdis/3x6/v1/elitec/config.h
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define MASTER_RIGHT
|
||||||
|
|
||||||
|
/* PMW3360 settings. */
|
||||||
|
#define POINTING_DEVICE_CS_PIN B0
|
||||||
39
keyboards/bastardkb/charybdis/3x6/v1/elitec/keyboard.json
Normal file
39
keyboards/bastardkb/charybdis/3x6/v1/elitec/keyboard.json
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis Mini (3x6) Elite-C",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "1.0.0"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"lto": true
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "D3"
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["D5", "C7", "F0", "D7", "E6", "B4"],
|
||||||
|
"rows": ["B7", "C6", "D4", "B5"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
|
"soft_serial_pin": "D2",
|
||||||
|
"matrix_pins": {
|
||||||
|
"right": {
|
||||||
|
"cols": ["F1", "C7", "B7", "D7", "E6", "B4"],
|
||||||
|
"rows": ["F0", "C6", "D4", "B5"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"processor": "atmega32u4",
|
||||||
|
"bootloader": "atmel-dfu"
|
||||||
|
}
|
||||||
4
keyboards/bastardkb/charybdis/3x6/v1/elitec/rules.mk
Normal file
4
keyboards/bastardkb/charybdis/3x6/v1/elitec/rules.mk
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint
|
||||||
24
keyboards/bastardkb/charybdis/3x6/v2/elitec/config.h
Normal file
24
keyboards/bastardkb/charybdis/3x6/v2/elitec/config.h
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define MASTER_RIGHT
|
||||||
|
|
||||||
|
/* PMW3360 settings. */
|
||||||
|
#define POINTING_DEVICE_CS_PIN F0
|
||||||
33
keyboards/bastardkb/charybdis/3x6/v2/elitec/keyboard.json
Normal file
33
keyboards/bastardkb/charybdis/3x6/v2/elitec/keyboard.json
Normal file
|
|
@ -0,0 +1,33 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis Mini (3x6) Elite-C",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "2.0.0"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"lto": true
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "D3"
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["F6", "F5", "B6", "D7", "E6", "B4"],
|
||||||
|
"rows": ["F7", "C6", "D4", "B5"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
|
"soft_serial_pin": "D2"
|
||||||
|
},
|
||||||
|
"processor": "atmega32u4",
|
||||||
|
"bootloader": "atmel-dfu"
|
||||||
|
}
|
||||||
4
keyboards/bastardkb/charybdis/3x6/v2/elitec/rules.mk
Normal file
4
keyboards/bastardkb/charybdis/3x6/v2/elitec/rules.mk
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint
|
||||||
38
keyboards/bastardkb/charybdis/3x6/v2/splinky_2/config.h
Normal file
38
keyboards/bastardkb/charybdis/3x6/v2/splinky_2/config.h
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define MASTER_RIGHT
|
||||||
|
|
||||||
|
// To use the handedness pin, resistors need to be installed on the adapter PCB.
|
||||||
|
// If so, uncomment the following code, and undefine MASTER_RIGHT above.
|
||||||
|
// #define SPLIT_HAND_PIN GP13
|
||||||
|
// #define SPLIT_HAND_PIN_LOW_IS_LEFT // High -> right, Low -> left.
|
||||||
|
|
||||||
|
/* SPI & PMW3360 settings. */
|
||||||
|
#define SPI_DRIVER SPID0
|
||||||
|
#define SPI_SCK_PIN GP18
|
||||||
|
#define SPI_MISO_PIN GP20
|
||||||
|
#define SPI_MOSI_PIN GP19
|
||||||
|
#define POINTING_DEVICE_CS_PIN GP14
|
||||||
|
|
||||||
|
/* Reset. */
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP17
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 1000U
|
||||||
31
keyboards/bastardkb/charybdis/3x6/v2/splinky_2/keyboard.json
Normal file
31
keyboards/bastardkb/charybdis/3x6/v2/splinky_2/keyboard.json
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis Mini (3x6) Splinky",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "2.0.0"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["GP27", "GP28", "GP15", "GP6", "GP7", "GP8"],
|
||||||
|
"rows": ["GP26", "GP5", "GP4", "GP9"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
|
"soft_serial_pin": "GP1"
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "GP0",
|
||||||
|
"driver": "vendor"
|
||||||
|
},
|
||||||
|
"processor": "RP2040",
|
||||||
|
"bootloader": "rp2040"
|
||||||
|
}
|
||||||
23
keyboards/bastardkb/charybdis/3x6/v2/splinky_2/mcuconf.h
Normal file
23
keyboards/bastardkb/charybdis/3x6/v2/splinky_2/mcuconf.h
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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>
|
||||||
|
|
||||||
|
#undef RP_SPI_USE_SPI0
|
||||||
|
#define RP_SPI_USE_SPI0 TRUE
|
||||||
5
keyboards/bastardkb/charybdis/3x6/v2/splinky_2/readme.md
Normal file
5
keyboards/bastardkb/charybdis/3x6/v2/splinky_2/readme.md
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Splinky controller
|
||||||
|
|
||||||
|
The splinky is a Pro-Micro/Elite-C replacement with USB-C and RP2040.
|
||||||
|
|
||||||
|
See [plut0nium/0xB2](https://github.com/plut0nium/0xB2/#releases) to figure out the right version for you (v2 or v3).
|
||||||
5
keyboards/bastardkb/charybdis/3x6/v2/splinky_2/rules.mk
Normal file
5
keyboards/bastardkb/charybdis/3x6/v2/splinky_2/rules.mk
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
|
||||||
|
SERIAL_DRIVER = vendor
|
||||||
38
keyboards/bastardkb/charybdis/3x6/v2/splinky_3/config.h
Normal file
38
keyboards/bastardkb/charybdis/3x6/v2/splinky_3/config.h
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define MASTER_RIGHT
|
||||||
|
|
||||||
|
// To use the handedness pin, resistors need to be installed on the adapter PCB.
|
||||||
|
// If so, uncomment the following code, and undefine MASTER_RIGHT above.
|
||||||
|
// #define SPLIT_HAND_PIN GP15
|
||||||
|
// #define SPLIT_HAND_PIN_LOW_IS_LEFT // High -> right, Low -> left.
|
||||||
|
|
||||||
|
/* SPI & PMW3360 settings. */
|
||||||
|
#define SPI_DRIVER SPID0
|
||||||
|
#define SPI_SCK_PIN GP22
|
||||||
|
#define SPI_MISO_PIN GP20
|
||||||
|
#define SPI_MOSI_PIN GP23
|
||||||
|
#define POINTING_DEVICE_CS_PIN GP16
|
||||||
|
|
||||||
|
/* Reset. */
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP17
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 1000U
|
||||||
31
keyboards/bastardkb/charybdis/3x6/v2/splinky_3/keyboard.json
Normal file
31
keyboards/bastardkb/charybdis/3x6/v2/splinky_3/keyboard.json
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis Mini (3x6) Splinky",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "2.0.0"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["GP27", "GP28", "GP21", "GP6", "GP7", "GP8"],
|
||||||
|
"rows": ["GP26", "GP5", "GP4", "GP9"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
|
"soft_serial_pin": "GP1"
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "GP0",
|
||||||
|
"driver": "vendor"
|
||||||
|
},
|
||||||
|
"processor": "RP2040",
|
||||||
|
"bootloader": "rp2040"
|
||||||
|
}
|
||||||
23
keyboards/bastardkb/charybdis/3x6/v2/splinky_3/mcuconf.h
Normal file
23
keyboards/bastardkb/charybdis/3x6/v2/splinky_3/mcuconf.h
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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>
|
||||||
|
|
||||||
|
#undef RP_SPI_USE_SPI0
|
||||||
|
#define RP_SPI_USE_SPI0 TRUE
|
||||||
5
keyboards/bastardkb/charybdis/3x6/v2/splinky_3/readme.md
Normal file
5
keyboards/bastardkb/charybdis/3x6/v2/splinky_3/readme.md
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Splinky controller
|
||||||
|
|
||||||
|
The splinky is a Pro-Micro/Elite-C replacement with USB-C and RP2040.
|
||||||
|
|
||||||
|
See [plut0nium/0xB2](https://github.com/plut0nium/0xB2/#releases) to figure out the right version for you (v2 or v3).
|
||||||
5
keyboards/bastardkb/charybdis/3x6/v2/splinky_3/rules.mk
Normal file
5
keyboards/bastardkb/charybdis/3x6/v2/splinky_3/rules.mk
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
|
||||||
|
SERIAL_DRIVER = vendor
|
||||||
52
keyboards/bastardkb/charybdis/3x6/v2/stemcell/config.h
Normal file
52
keyboards/bastardkb/charybdis/3x6/v2/stemcell/config.h
Normal file
|
|
@ -0,0 +1,52 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define MASTER_RIGHT
|
||||||
|
|
||||||
|
// To use the handedness pin, resistors need to be installed on the adapter PCB.
|
||||||
|
// If so, uncomment the following code, and undefine MASTER_RIGHT above.
|
||||||
|
// #define A0 PAL_LINE(GPIOA, 0)
|
||||||
|
// #define SPLIT_HAND_PIN A0
|
||||||
|
// #define SPLIT_HAND_PIN_LOW_IS_LEFT // High -> right, Low -> left.
|
||||||
|
|
||||||
|
/* RGB settings. */
|
||||||
|
#define WS2812_PWM_DRIVER PWMD2
|
||||||
|
#define WS2812_PWM_CHANNEL 4
|
||||||
|
#define WS2812_PWM_PAL_MODE 1
|
||||||
|
#define WS2812_PWM_DMA_STREAM STM32_DMA1_STREAM7
|
||||||
|
#define WS2812_PWM_DMA_CHANNEL 3
|
||||||
|
|
||||||
|
/* CRC. */
|
||||||
|
#define CRC8_USE_TABLE
|
||||||
|
#define CRC8_OPTIMIZE_SPEED
|
||||||
|
|
||||||
|
/* SPI config for pmw3360 sensor. */
|
||||||
|
#define SPI_DRIVER SPID1
|
||||||
|
#define SPI_SCK_PIN A5
|
||||||
|
#define SPI_SCK_PAL_MODE 5
|
||||||
|
#define SPI_MOSI_PIN A7
|
||||||
|
#define SPI_MOSI_PAL_MODE 5
|
||||||
|
#define SPI_MISO_PIN A6
|
||||||
|
#define SPI_MISO_PAL_MODE 5
|
||||||
|
|
||||||
|
/* PMW3360 settings. */
|
||||||
|
#define POINTING_DEVICE_CS_PIN A1
|
||||||
|
#define PMW3360_CS_MODE 3
|
||||||
|
#define PMW3360_CS_DIVISOR 64
|
||||||
24
keyboards/bastardkb/charybdis/3x6/v2/stemcell/halconf.h
Normal file
24
keyboards/bastardkb/charybdis/3x6/v2/stemcell/halconf.h
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
#define HAL_USE_SERIAL TRUE
|
||||||
|
#define HAL_USE_SPI TRUE
|
||||||
|
|
||||||
|
#include_next <halconf.h>
|
||||||
36
keyboards/bastardkb/charybdis/3x6/v2/stemcell/keyboard.json
Normal file
36
keyboards/bastardkb/charybdis/3x6/v2/stemcell/keyboard.json
Normal file
|
|
@ -0,0 +1,36 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis Mini (3x6) STeMCell",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "2.0.0",
|
||||||
|
"shared_endpoint": {
|
||||||
|
"keyboard": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "A2",
|
||||||
|
"driver": "pwm"
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"debounce_type": "asym_eager_defer_pk"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B1", "B2", "A4", "B4", "B5", "B8"],
|
||||||
|
"rows": ["B0", "B3", "A15", "B9"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
|
"soft_serial_pin": "A3"
|
||||||
|
},
|
||||||
|
"development_board": "stemcell"
|
||||||
|
}
|
||||||
32
keyboards/bastardkb/charybdis/3x6/v2/stemcell/mcuconf.h
Normal file
32
keyboards/bastardkb/charybdis/3x6/v2/stemcell/mcuconf.h
Normal file
|
|
@ -0,0 +1,32 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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>
|
||||||
|
|
||||||
|
#undef STM32_SPI_USE_SPI1
|
||||||
|
#define STM32_SPI_USE_SPI1 TRUE
|
||||||
|
|
||||||
|
#undef STM32_SERIAL_USE_USART1
|
||||||
|
#define STM32_SERIAL_USE_USART1 FALSE
|
||||||
|
|
||||||
|
#undef STM32_PWM_USE_TIM2
|
||||||
|
#define STM32_PWM_USE_TIM2 TRUE
|
||||||
|
|
||||||
|
#undef STM32_ST_USE_TIMER
|
||||||
|
#define STM32_ST_USE_TIMER 5
|
||||||
6
keyboards/bastardkb/charybdis/3x6/v2/stemcell/rules.mk
Normal file
6
keyboards/bastardkb/charybdis/3x6/v2/stemcell/rules.mk
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint
|
||||||
|
|
||||||
|
SERIAL_DRIVER = usart
|
||||||
100
keyboards/bastardkb/charybdis/4x6/4x6.c
Normal file
100
keyboards/bastardkb/charybdis/4x6/4x6.c
Normal file
|
|
@ -0,0 +1,100 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2020 Christopher Courtney <drashna@live.com> (@drashna)
|
||||||
|
* Copyright 2021 Quentin LEBASTARD <qlebastard@gmail.com>
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Publicw 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 "charybdis.h"
|
||||||
|
|
||||||
|
// clang-format off
|
||||||
|
#ifdef RGB_MATRIX_ENABLE
|
||||||
|
/**
|
||||||
|
* \brief LEDs index.
|
||||||
|
*
|
||||||
|
* ╭────────────────────────╮ ╭────────────────────────╮
|
||||||
|
* 0 7 8 15 16 20 49 45 44 37 36 29
|
||||||
|
* ├────────────────────────┤ ├────────────────────────┤
|
||||||
|
* 1 6 9 14 17 21 50 46 43 38 35 30
|
||||||
|
* ├────────────────────────┤ ├────────────────────────┤
|
||||||
|
* 2 5 10 13 18 22 51 47 42 39 34 31
|
||||||
|
* ├────────────────────────┤ ├────────────────────────┤
|
||||||
|
* 3 4 11 12 19 23 52 48 41 40 33 32
|
||||||
|
* ╰────────────────────────╯ ╰────────────────────────╯
|
||||||
|
* 26 27 28 53 54 XX
|
||||||
|
* 25 24 55 XX
|
||||||
|
* ╰────────────╯ ╰────────────╯
|
||||||
|
*
|
||||||
|
* Note: the LED config simulates 58 LEDs instead of the actual 56 to prevent
|
||||||
|
* confusion when testing LEDs during assembly when handedness is not set
|
||||||
|
* correctly. Those fake LEDs are bound to the physical bottom-left corner.
|
||||||
|
*/
|
||||||
|
led_config_t g_led_config = { {
|
||||||
|
/* Key Matrix to LED index. */
|
||||||
|
// Left split.
|
||||||
|
{ 0, 7, 8, 15, 16, 20 }, // Num row
|
||||||
|
{ 1, 6, 9, 14, 17, 21 }, // Top row
|
||||||
|
{ 2, 5, 10, 13, 18, 22 }, // Middle row
|
||||||
|
{ 3, 4, 11, 12, 19, 23 }, // Bottom row
|
||||||
|
{ NO_LED, 28, 24, 26, 27, 25 }, // Thumb cluster
|
||||||
|
// Right split.
|
||||||
|
{ 29, 36, 37, 44, 45, 49 }, // Num row
|
||||||
|
{ 30, 35, 38, 43, 46, 50 }, // Top row
|
||||||
|
{ 31, 34, 39, 42, 47, 51 }, // Middle row
|
||||||
|
{ 32, 33, 40, 41, 48, 52 }, // Bottom row
|
||||||
|
{ NO_LED, 53, 55, 54, NO_LED, NO_LED }, // Thumb cluster
|
||||||
|
}, {
|
||||||
|
/* LED index to physical position. */
|
||||||
|
// Left split.
|
||||||
|
/* index=0 */ { 0, 0 }, { 0, 12 }, { 0, 24 }, { 0, 36 }, // col 1 (left most)
|
||||||
|
/* index=4 */ { 16, 36 }, { 16, 24 }, { 16, 12 }, { 16, 0 }, // col 2
|
||||||
|
/* index=8 */ { 32, 0 }, { 32, 12 }, { 32, 24 }, { 32, 36 },
|
||||||
|
/* index=12 */ { 48, 36 }, { 48, 24 }, { 48, 12 }, { 48, 0 },
|
||||||
|
/* index=16 */ { 64, 0 }, { 64, 12 }, { 64, 24 }, { 64, 36 },
|
||||||
|
/* index=20 */ { 80, 0 }, { 80, 12 }, { 80, 24 }, { 80, 36 },
|
||||||
|
/* index=24 */ { 112, 64 }, { 96, 64 }, { 80, 52 },
|
||||||
|
/* index=27 */ { 96, 52 }, { 112, 52 },
|
||||||
|
// Right split.
|
||||||
|
/* index=29 */ { 224, 0 }, { 224, 12 }, { 224, 24 }, { 224, 36 }, // col 12 (right most)
|
||||||
|
/* index=33 */ { 208, 36 }, { 208, 24 }, { 208, 12 }, { 208, 0 }, // col 11
|
||||||
|
/* index=37 */ { 192, 0 }, { 192, 12 }, { 192, 24 }, { 192, 36 },
|
||||||
|
/* index=41 */ { 176, 36 }, { 176, 24 }, { 176, 12 }, { 176, 0 },
|
||||||
|
/* index=45 */ { 160, 0 }, { 160, 12 }, { 160, 24 }, { 160, 36 },
|
||||||
|
/* index=49 */ { 144, 0 }, { 144, 12 }, { 144, 24 }, { 144, 36 },
|
||||||
|
/* index=53 */ { 112, 52 }, { 128, 64 }, { 112, 64 },
|
||||||
|
/* index=56 */ { 0, 0 }, { 0, 0 },
|
||||||
|
}, {
|
||||||
|
/* LED index to flag. */
|
||||||
|
// Left split.
|
||||||
|
/* index=0 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // col 1
|
||||||
|
/* index=4 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // col 2
|
||||||
|
/* index=8 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=12 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=16 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=20 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=24 */ LED_FLAG_MODIFIER, LED_FLAG_MODIFIER, LED_FLAG_MODIFIER, // Thumb cluster top
|
||||||
|
/* index=27 */ LED_FLAG_MODIFIER, LED_FLAG_MODIFIER, // Thumb cluster bottom
|
||||||
|
// Right split.
|
||||||
|
/* index=29 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // col 12
|
||||||
|
/* index=33 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // col 11
|
||||||
|
/* index=37 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=41 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=45 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=49 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT,
|
||||||
|
/* index=53 */ LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, LED_FLAG_KEYLIGHT, // Thumb cluster
|
||||||
|
/* index=55 */ LED_FLAG_MODIFIER, LED_FLAG_MODIFIER, // Thumb cluster fakes
|
||||||
|
} };
|
||||||
|
#endif
|
||||||
|
// clang-format on
|
||||||
54
keyboards/bastardkb/charybdis/4x6/blackpill/config.h
Normal file
54
keyboards/bastardkb/charybdis/4x6/blackpill/config.h
Normal file
|
|
@ -0,0 +1,54 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2020 Christopher Courtney <drashna@live.com> (@drashna)
|
||||||
|
* Copyright 2021 Stefan Kerkmann (@KarlK90)
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Publicw 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define SPLIT_HAND_PIN A3 // High -> left, Low -> right.
|
||||||
|
|
||||||
|
/* RGB settings. */
|
||||||
|
#define WS2812_PWM_DRIVER PWMD2
|
||||||
|
#define WS2812_PWM_CHANNEL 2
|
||||||
|
#define WS2812_PWM_PAL_MODE 1
|
||||||
|
#define WS2812_EXTERNAL_PULLUP
|
||||||
|
#define WS2812_PWM_DMA_STREAM STM32_DMA1_STREAM1
|
||||||
|
#define WS2812_PWM_DMA_CHANNEL 3
|
||||||
|
|
||||||
|
/* Serial configuration for split keyboard. */
|
||||||
|
#define SERIAL_USART_TX_PIN A9
|
||||||
|
|
||||||
|
/* CRC. */
|
||||||
|
#define CRC8_USE_TABLE
|
||||||
|
#define CRC8_OPTIMIZE_SPEED
|
||||||
|
|
||||||
|
/* SPI config for EEPROM and pmw3360 sensor. */
|
||||||
|
#define SPI_DRIVER SPID1
|
||||||
|
#define SPI_SCK_PIN A5
|
||||||
|
#define SPI_SCK_PAL_MODE 5
|
||||||
|
#define SPI_MOSI_PIN A7
|
||||||
|
#define SPI_MOSI_PAL_MODE 5
|
||||||
|
#define SPI_MISO_PIN A6
|
||||||
|
#define SPI_MISO_PAL_MODE 5
|
||||||
|
|
||||||
|
/* EEPROM config. */
|
||||||
|
#define EXTERNAL_EEPROM_SPI_SLAVE_SELECT_PIN A4
|
||||||
|
|
||||||
|
/* PMW3360 settings. */
|
||||||
|
#define POINTING_DEVICE_CS_PIN B14
|
||||||
|
#define PMW33XX_CS_DIVISOR 64
|
||||||
27
keyboards/bastardkb/charybdis/4x6/blackpill/halconf.h
Normal file
27
keyboards/bastardkb/charybdis/4x6/blackpill/halconf.h
Normal file
|
|
@ -0,0 +1,27 @@
|
||||||
|
/**
|
||||||
|
* Copyright 2020 Nick Brassel (tzarc)
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
#define HAL_USE_SERIAL TRUE
|
||||||
|
#define HAL_USE_SPI TRUE
|
||||||
|
#define SPI_USE_WAIT TRUE
|
||||||
|
#define SPI_SELECT_MODE SPI_SELECT_MODE_PAD
|
||||||
|
|
||||||
|
#include_next <halconf.h>
|
||||||
38
keyboards/bastardkb/charybdis/4x6/blackpill/keyboard.json
Normal file
38
keyboards/bastardkb/charybdis/4x6/blackpill/keyboard.json
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis (4x6) Blackpill",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "1.0.0",
|
||||||
|
"shared_endpoint": {
|
||||||
|
"keyboard": true
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": true,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"eeprom": {
|
||||||
|
"driver": "spi"
|
||||||
|
},
|
||||||
|
"split": {
|
||||||
|
"enabled": true
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "A1",
|
||||||
|
"driver": "pwm"
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"debounce_type": "asym_eager_defer_pk"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["B0", "B1", "B10", "B3", "B4", "B5"],
|
||||||
|
"rows": ["B15", "A2", "B8", "A8", "B9"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"development_board": "blackpill_f411"
|
||||||
|
}
|
||||||
45
keyboards/bastardkb/charybdis/4x6/blackpill/mcuconf.h
Normal file
45
keyboards/bastardkb/charybdis/4x6/blackpill/mcuconf.h
Normal file
|
|
@ -0,0 +1,45 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2020 Nick Brassel (tzarc)
|
||||||
|
* Copyright 2021 Stefan Kerkmann (@KarlK90)
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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>
|
||||||
|
|
||||||
|
#undef STM32_PWM_USE_TIM2
|
||||||
|
#define STM32_PWM_USE_TIM2 TRUE
|
||||||
|
|
||||||
|
#undef STM32_PWM_USE_TIM3
|
||||||
|
#define STM32_PWM_USE_TIM3 TRUE
|
||||||
|
|
||||||
|
#undef STM32_SPI_USE_SPI1
|
||||||
|
#define STM32_SPI_USE_SPI1 TRUE
|
||||||
|
|
||||||
|
#undef STM32_SPI_SPI1_RX_DMA_STREAM
|
||||||
|
#define STM32_SPI_SPI1_RX_DMA_STREAM STM32_DMA_STREAM_ID(2, 0)
|
||||||
|
#undef STM32_SPI_SPI1_TX_DMA_STREAM
|
||||||
|
#define STM32_SPI_SPI1_TX_DMA_STREAM STM32_DMA_STREAM_ID(2, 3)
|
||||||
|
|
||||||
|
#undef STM32_SERIAL_USE_USART1
|
||||||
|
#define STM32_SERIAL_USE_USART1 TRUE
|
||||||
|
|
||||||
|
#undef STM32_GPT_USE_TIM4
|
||||||
|
#define STM32_GPT_USE_TIM4 TRUE
|
||||||
|
|
||||||
|
#undef STM32_ST_USE_TIMER
|
||||||
|
#define STM32_ST_USE_TIMER 5
|
||||||
3
keyboards/bastardkb/charybdis/4x6/blackpill/readme.md
Normal file
3
keyboards/bastardkb/charybdis/4x6/blackpill/readme.md
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Charybdis (4x6) BlackPill
|
||||||
|
|
||||||
|
An ergonomic keyboard with integrated trackball, with BlackPill (STM32F411) mod.
|
||||||
6
keyboards/bastardkb/charybdis/4x6/blackpill/rules.mk
Normal file
6
keyboards/bastardkb/charybdis/4x6/blackpill/rules.mk
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported.
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint
|
||||||
|
|
||||||
|
SERIAL_DRIVER = usart
|
||||||
22
keyboards/bastardkb/charybdis/4x6/config.h
Normal file
22
keyboards/bastardkb/charybdis/4x6/config.h
Normal file
|
|
@ -0,0 +1,22 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2021 Quentin LEBASTARD <qlebastard@gmail.com>
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Trackball angle adjustment. */
|
||||||
|
#define ROTATIONAL_TRANSFORM_ANGLE -25
|
||||||
87
keyboards/bastardkb/charybdis/4x6/info.json
Normal file
87
keyboards/bastardkb/charybdis/4x6/info.json
Normal file
|
|
@ -0,0 +1,87 @@
|
||||||
|
{
|
||||||
|
"manufacturer": "Bastard Keyboards",
|
||||||
|
"url": "https://bastardkb.com/charybdis",
|
||||||
|
"usb": {
|
||||||
|
"pid": "0x1833",
|
||||||
|
"vid": "0xA8F8"
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"split_count": [29, 29]
|
||||||
|
},
|
||||||
|
"layout_aliases": {
|
||||||
|
"LAYOUT_charybdis_4x6": "LAYOUT"
|
||||||
|
},
|
||||||
|
"layouts": {
|
||||||
|
"LAYOUT": {
|
||||||
|
"layout": [
|
||||||
|
{"matrix": [0, 0], "x": 0, "y": 0},
|
||||||
|
{"matrix": [0, 1], "x": 1, "y": 0},
|
||||||
|
{"matrix": [0, 2], "x": 2, "y": 0},
|
||||||
|
{"matrix": [0, 3], "x": 3, "y": 0},
|
||||||
|
{"matrix": [0, 4], "x": 4, "y": 0},
|
||||||
|
{"matrix": [0, 5], "x": 5, "y": 0},
|
||||||
|
|
||||||
|
{"matrix": [5, 5], "x": 11, "y": 0},
|
||||||
|
{"matrix": [5, 4], "x": 12, "y": 0},
|
||||||
|
{"matrix": [5, 3], "x": 13, "y": 0},
|
||||||
|
{"matrix": [5, 2], "x": 14, "y": 0},
|
||||||
|
{"matrix": [5, 1], "x": 15, "y": 0},
|
||||||
|
{"matrix": [5, 0], "x": 16, "y": 0},
|
||||||
|
|
||||||
|
{"matrix": [1, 0], "x": 0, "y": 1},
|
||||||
|
{"matrix": [1, 1], "x": 1, "y": 1},
|
||||||
|
{"matrix": [1, 2], "x": 2, "y": 1},
|
||||||
|
{"matrix": [1, 3], "x": 3, "y": 1},
|
||||||
|
{"matrix": [1, 4], "x": 4, "y": 1},
|
||||||
|
{"matrix": [1, 5], "x": 5, "y": 1},
|
||||||
|
|
||||||
|
{"matrix": [6, 5], "x": 11, "y": 1},
|
||||||
|
{"matrix": [6, 4], "x": 12, "y": 1},
|
||||||
|
{"matrix": [6, 3], "x": 13, "y": 1},
|
||||||
|
{"matrix": [6, 2], "x": 14, "y": 1},
|
||||||
|
{"matrix": [6, 1], "x": 15, "y": 1},
|
||||||
|
{"matrix": [6, 0], "x": 16, "y": 1},
|
||||||
|
|
||||||
|
{"matrix": [2, 0], "x": 0, "y": 2},
|
||||||
|
{"matrix": [2, 1], "x": 1, "y": 2},
|
||||||
|
{"matrix": [2, 2], "x": 2, "y": 2},
|
||||||
|
{"matrix": [2, 3], "x": 3, "y": 2},
|
||||||
|
{"matrix": [2, 4], "x": 4, "y": 2},
|
||||||
|
{"matrix": [2, 5], "x": 5, "y": 2},
|
||||||
|
|
||||||
|
{"matrix": [7, 5], "x": 11, "y": 2},
|
||||||
|
{"matrix": [7, 4], "x": 12, "y": 2},
|
||||||
|
{"matrix": [7, 3], "x": 13, "y": 2},
|
||||||
|
{"matrix": [7, 2], "x": 14, "y": 2},
|
||||||
|
{"matrix": [7, 1], "x": 15, "y": 2},
|
||||||
|
{"matrix": [7, 0], "x": 16, "y": 2},
|
||||||
|
|
||||||
|
{"matrix": [3, 0], "x": 0, "y": 3},
|
||||||
|
{"matrix": [3, 1], "x": 1, "y": 3},
|
||||||
|
{"matrix": [3, 2], "x": 2, "y": 3},
|
||||||
|
{"matrix": [3, 3], "x": 3, "y": 3},
|
||||||
|
{"matrix": [3, 4], "x": 4, "y": 3},
|
||||||
|
{"matrix": [3, 5], "x": 5, "y": 3},
|
||||||
|
|
||||||
|
{"matrix": [8, 5], "x": 11, "y": 3},
|
||||||
|
{"matrix": [8, 4], "x": 12, "y": 3},
|
||||||
|
{"matrix": [8, 3], "x": 13, "y": 3},
|
||||||
|
{"matrix": [8, 2], "x": 14, "y": 3},
|
||||||
|
{"matrix": [8, 1], "x": 15, "y": 3},
|
||||||
|
{"matrix": [8, 0], "x": 16, "y": 3},
|
||||||
|
|
||||||
|
{"matrix": [4, 3], "x": 5, "y": 4},
|
||||||
|
{"matrix": [4, 4], "x": 6, "y": 4},
|
||||||
|
{"matrix": [4, 1], "x": 7, "y": 4},
|
||||||
|
|
||||||
|
{"matrix": [9, 1], "x": 9, "y": 4},
|
||||||
|
{"matrix": [9, 3], "x": 10, "y": 4},
|
||||||
|
|
||||||
|
{"matrix": [4, 5], "x": 6, "y": 5},
|
||||||
|
{"matrix": [4, 2], "x": 7, "y": 5},
|
||||||
|
|
||||||
|
{"matrix": [9, 5], "x": 9, "y": 5}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
75
keyboards/bastardkb/charybdis/4x6/keymaps/default/keymap.c
Normal file
75
keyboards/bastardkb/charybdis/4x6/keymaps/default/keymap.c
Normal file
|
|
@ -0,0 +1,75 @@
|
||||||
|
/**
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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 charybdis_keymap_layers {
|
||||||
|
LAYER_BASE = 0,
|
||||||
|
LAYER_LOWER,
|
||||||
|
LAYER_RAISE,
|
||||||
|
};
|
||||||
|
|
||||||
|
#define LOWER MO(LAYER_LOWER)
|
||||||
|
#define RAISE MO(LAYER_RAISE)
|
||||||
|
|
||||||
|
// clang-format off
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
[LAYER_BASE] = LAYOUT(
|
||||||
|
// ╭──────────────────────────────────────────────────────╮ ╭──────────────────────────────────────────────────────╮
|
||||||
|
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
KC_LSFT, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
KC_LCTL, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_LALT,
|
||||||
|
// ╰──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────╯
|
||||||
|
KC_LGUI, KC_SPC, LOWER, RAISE, KC_ENT,
|
||||||
|
KC_LALT, KC_BSPC, KC_DEL
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
|
||||||
|
[LAYER_LOWER] = LAYOUT(
|
||||||
|
// ╭──────────────────────────────────────────────────────╮ ╭──────────────────────────────────────────────────────╮
|
||||||
|
KC_TILD, KC_EXLM, KC_AT, KC_HASH, KC_DLR, KC_PERC, KC_CIRC, KC_AMPR, KC_ASTR, KC_LPRN, KC_RPRN, KC_UNDS,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
RM_NEXT, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_LBRC, KC_P7, KC_P8, KC_P9, KC_RBRC, XXXXXXX,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
RM_TOGG, KC_LGUI, KC_LALT, KC_LCTL, KC_LSFT, XXXXXXX, KC_PPLS, KC_P4, KC_P5, KC_P6, KC_PMNS, KC_PEQL,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
RM_PREV, XXXXXXX, XXXXXXX, XXXXXXX, EE_CLR, QK_BOOT, KC_PAST, KC_P1, KC_P2, KC_P3, KC_PSLS, KC_PDOT,
|
||||||
|
// ╰──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────╯
|
||||||
|
XXXXXXX, XXXXXXX, _______, XXXXXXX, _______,
|
||||||
|
XXXXXXX, XXXXXXX, KC_P0
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
|
||||||
|
[LAYER_RAISE] = LAYOUT(
|
||||||
|
// ╭──────────────────────────────────────────────────────╮ ╭──────────────────────────────────────────────────────╮
|
||||||
|
KC_F12, KC_F1, KC_F2, KC_F3, KC_F4, KC_F5, KC_F6, KC_F7, KC_F8, KC_F9, KC_F10, KC_F11,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
KC_MNXT, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_VOLU,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
KC_MPLY, KC_LEFT, KC_UP, KC_DOWN, KC_RGHT, XXXXXXX, XXXXXXX, KC_RSFT, KC_RCTL, KC_RALT, KC_RGUI, KC_MUTE,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
KC_MPRV, KC_HOME, KC_PGUP, KC_PGDN, KC_END, XXXXXXX, QK_BOOT, EE_CLR, XXXXXXX, XXXXXXX, XXXXXXX, KC_VOLD,
|
||||||
|
// ╰──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────╯
|
||||||
|
_______, _______, XXXXXXX, _______, XXXXXXX,
|
||||||
|
_______, _______, XXXXXXX
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
};
|
||||||
|
// clang-format on
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
# Charybdis (4x6) default keymap
|
||||||
|
|
||||||
|
> :bulb: Have a look at the [`via` keymap](../via) for a more feature-rich layout.
|
||||||
|
|
||||||
|
The Charydbis (4x6) default keymap is inspired from the original [Dactyl Manuform](../../../../../handwired/dactyl_manuform) default keymap.
|
||||||
|
|
||||||
|
This layout supports RGB matrix. However, due to space constraints on the MCU, only a limited number of effect can be enabled at once. Look at the `config.h` file and enable your favorite effect.
|
||||||
|
|
@ -0,0 +1,6 @@
|
||||||
|
#define CHARYBDIS_CONFIG_SYNC
|
||||||
|
#define POINTING_DEVICE_AUTO_MOUSE_ENABLE
|
||||||
|
#define AUTO_MOUSE_DEFAULT_LAYER 10
|
||||||
|
#define AUTO_MOUSE_TIME 650
|
||||||
|
#define AUTO_MOUSE_DELAY TAPPING_TERM
|
||||||
|
#define CHARYBDIS_DRAGSCROLL_REVERSE_Y
|
||||||
154
keyboards/bastardkb/charybdis/4x6/keymaps/oco9oco/keymap.c
Normal file
154
keyboards/bastardkb/charybdis/4x6/keymaps/oco9oco/keymap.c
Normal file
|
|
@ -0,0 +1,154 @@
|
||||||
|
/*
|
||||||
|
Copyright 2022 oco9oco <oco9oco@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/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "oco9oco.h" //look for users/oco9oco/
|
||||||
|
|
||||||
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
|
//clang-format off
|
||||||
|
|
||||||
|
/*
|
||||||
|
[LAYER_BASE] = LAYOUT(
|
||||||
|
// ╭──────────────────────────────────────────────────────╮ ╭──────────────────────────────────────────────────────╮
|
||||||
|
KC_ESC, KC_1, KC_2, KC_3, KC_4, KC_5, KC_6, KC_7, KC_8, KC_9, KC_0, KC_MINS,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
KC_TAB, KC_Q, KC_W, KC_E, KC_R, KC_T, KC_Y, KC_U, KC_I, KC_O, KC_P, KC_BSLS,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
KC_LSFT, KC_A, KC_S, KC_D, KC_F, KC_G, KC_H, KC_J, KC_K, KC_L, KC_SCLN, KC_QUOT,
|
||||||
|
// ├──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────┤
|
||||||
|
KC_LCTL, KC_Z, KC_X, KC_C, KC_V, KC_B, KC_N, KC_M, KC_COMM, KC_DOT, KC_SLSH, KC_LALT,
|
||||||
|
// ╰──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────╯
|
||||||
|
KC_LGUI, KC_SPC, LOWER, RAISE, KC_ENT,
|
||||||
|
KC_LALT, KC_BSPC, KC_DEL
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
*/
|
||||||
|
|
||||||
|
[_BASE] = LAYOUT_charybdis_wrapper(
|
||||||
|
// ╭──────────────────────────────────────────────────────╮ ╭──────────────────────────────────────────────────────╮
|
||||||
|
KC_ESC, __________________NUMROW_L_________________, __________________NUMROW_R_________________, KC_MINS,
|
||||||
|
KC_TAB, __________________QWERTY_L1________________, __________________QWERTY_R1________________, KC_EQL,
|
||||||
|
SFT_CAPS,__________________QWERTY_SACS_L2___________, __________________QWERTY_R2________________, KC_QUOT,
|
||||||
|
KC_LGUI, __________________QWERTY_L3________________, __________________QWERTY_HOME_R3___________, KC_BSLS,
|
||||||
|
// ╰──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────╯
|
||||||
|
THUMB_L1,THUMB_L2, KC_LNG1,/* */THUMB_R3,THUMB_R2,
|
||||||
|
THUMB_L3, KC_LNG2,/* */THUMB_R1
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
|
||||||
|
[_IPC] = LAYOUT_charybdis_wrapper(
|
||||||
|
// ╭──────────────────────────────────────────────────────╮ ╭──────────────────────────────────────────────────────╮
|
||||||
|
ALT_F4, C(KC_F1),KC_P, KC_X, C(G(KC_C)),TO(_ONEHAND), KC_LBRC, KC_RBRC, KC_LPRN, KC_RPRN, XXXXXXX, _______,
|
||||||
|
KC_LNG2, C(G(KC_C)), XXXXXXX, CLASS_E, CLASS_A, HWP_MACRO, KC_GRV, _________NUM_789_________, XXXXXXX, _______,
|
||||||
|
_______, IPC(A), IPC(S), IPC_MIN, IPC(F), KC_DOT, AT_IPC, _________NUM_456_________, KC_COLN, KC_DQUO,
|
||||||
|
G(C(KC_SPC)), IPC(Z), HWP_CITE,IPC(C), KC_EQL, KC_BSLS, XXXXXXX, _________NUM_123_________, _______, KC_PIPE,
|
||||||
|
// ╰──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────╯
|
||||||
|
_______, _______, _______,/* */HWP_MACRO, LT(_NAV, KC_0),
|
||||||
|
QK_BOOT, _______,/* */G(C(KC_SPC))
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
[_NAV] = LAYOUT_charybdis_wrapper(
|
||||||
|
// ╭──────────────────────────────────────────────────────╮ ╭──────────────────────────────────────────────────────╮
|
||||||
|
_______, CTRL_F1, KC_F2, KC_F3, ALT_F4, KC_F5, XXXXXXX, A(KC_7), A(KC_5), A(KC_9), A(KC_0), XXXXXXX,
|
||||||
|
ALT_TAB, NAV_NS,LCA(KC_J),LCA(KC_K),LCA(KC_L), KC_F6, S(A(KC_3)), A(KC_4), A(KC_8), A(KC_6), KC_NO, KC_NO,
|
||||||
|
KC_LGUI, KC_LGUI, KC_LALT, KC_LCTL, KC_LSFT, KC_F7, KC_INS, KC_LEFT, KC_DOWN, KC_UP, KC_RGHT, DPI_MOD,
|
||||||
|
G(C(KC_D)), NAV(Z), C(KC_X), C(KC_C), C(KC_V), C(KC_B), KC_APP, KC_HOME, KC_PGDN, KC_PGUP, KC_END, DPI_RMOD,
|
||||||
|
// ╰──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────╯
|
||||||
|
_______, KC_BSPC, KC_DEL,/* */_______, _______,
|
||||||
|
_______, _______,/* */_______
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
[_MOUSE] = LAYOUT_charybdis_wrapper(
|
||||||
|
// ╭──────────────────────────────────────────────────────╮ ╭──────────────────────────────────────────────────────╮
|
||||||
|
_______, CTRL_F1, KC_F2, KC_F3, ALT_F4, KC_F5, KC_F8, KC_F7, KC_F8, KC_F9, KC_F10, QK_BOOT,
|
||||||
|
KC_U, KC_BTN4, KC_WH_D, KC_MS_U, KC_WH_U, KC_F6, KC_F9, KC_WH_L, XXXXXXX, XXXXXXX, XXXXXXX, QK_MAKE,
|
||||||
|
KC_P, KC_LSFT, KC_MS_L, KC_MS_D, KC_MS_R, KC_F7, KC_F10, KC_ACL0, KC_BTN1, KC_BTN2, KC_BTN3, KC_ENT,
|
||||||
|
KC_X, KC_LGUI, KC_LALT, KC_LCTL, KC_LSFT, BOLDFACE, KC_APP, KC_ACL0, KC_BTN1, KC_BTN2, KC_BTN3, XXXXXXX,
|
||||||
|
// ╰──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────╯
|
||||||
|
_______, KC_BSPC, KC_DEL,/* */_______, _______,
|
||||||
|
_______, _______,/* */QK_BOOT
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
|
||||||
|
[_FUNC] = LAYOUT_charybdis_wrapper(
|
||||||
|
// ╭──────────────────────────────────────────────────────╮ ╭──────────────────────────────────────────────────────╮
|
||||||
|
_______, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, QK_BOOT,
|
||||||
|
XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_F12, KC_F7, KC_F8, KC_F9, XXXXXXX, XXXXXXX,
|
||||||
|
XXXXXXX, KC_LSFT, KC_LALT, KC_LCTL, KC_LSFT, XXXXXXX, KC_F11, KC_F4, KC_F5, KC_F6, XXXXXXX, XXXXXXX,
|
||||||
|
XXXXXXX, KC_LGUI, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, KC_F10, KC_F1, KC_F2, KC_F3, XXXXXXX, XXXXXXX,
|
||||||
|
// ╰──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────╯
|
||||||
|
_______, _______, _______,/* */_______, _______,
|
||||||
|
_______, _______,/* */_______
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
|
||||||
|
[_ONEHAND] = LAYOUT_charybdis_wrapper(
|
||||||
|
// ╭──────────────────────────────────────────────────────╮ ╭──────────────────────────────────────────────────────╮
|
||||||
|
XXXXXXX, CTRL_F1, KC_F2, KC_F3, ALT_F4, KC_F5, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, QK_BOOT,
|
||||||
|
XXXXXXX, XXXXXXX, KC_WH_D, XXXXXXX, KC_WH_U, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, XXXXXXX, QK_MAKE,
|
||||||
|
S_D_MOD, KC_LCTL, KC_BTN2, KC_LSFT, KC_BTN1, DPI_MOD, C(KC_TAB), KC_BTN1, KC_BTN2, KC_BTN3, XXXXXXX, XXXXXXX,
|
||||||
|
S_D_RMOD,KC_BTN3, KC_X, KC_C, KC_V, DPI_RMOD, C(KC_W), KC_BTN4, KC_BTN5, DRGSCRL, SNIPING, XXXXXXX,
|
||||||
|
// ╰──────────────────────────────────────────────────────┤ ├──────────────────────────────────────────────────────╯
|
||||||
|
KC_LCTL, DRGSCRL, SNIPING,/* */THUMB_R3,THUMB_R2,
|
||||||
|
_______, _______,/* */TO(_BASE)
|
||||||
|
// ╰───────────────────────────╯ ╰──────────────────╯
|
||||||
|
),
|
||||||
|
};
|
||||||
|
// in keymap.c:
|
||||||
|
void pointing_device_init_user(void) {
|
||||||
|
set_auto_mouse_layer(_ONEHAND); // only required if AUTO_MOUSE_DEFAULT_LAYER is not set to index of <mouse_layer>
|
||||||
|
set_auto_mouse_enable(true); // always required before the auto mouse feature will work
|
||||||
|
}
|
||||||
|
|
||||||
|
layer_state_t layer_state_set_user(layer_state_t state) {
|
||||||
|
// checks highest layer other than target layer
|
||||||
|
switch(get_highest_layer(remove_auto_mouse_layer(state, true))) {
|
||||||
|
case _MOUSE:
|
||||||
|
case _NAV:
|
||||||
|
// remove_auto_mouse_target must be called to adjust state *before* setting enable
|
||||||
|
state = remove_auto_mouse_layer(state, false);
|
||||||
|
set_auto_mouse_enable(false);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
set_auto_mouse_enable(true);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// recommend that any code that makes adjustment based on auto mouse layer state would go here
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
|
||||||
|
bool is_mouse_record_kb(uint16_t keycode, keyrecord_t* record) {
|
||||||
|
switch(keycode) {
|
||||||
|
case DRGSCRL:
|
||||||
|
case SNIPING:
|
||||||
|
case KC_LCTL:
|
||||||
|
case KC_LALT:
|
||||||
|
case KC_LSFT:
|
||||||
|
return true;
|
||||||
|
default:
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return is_mouse_record_user(keycode, record);
|
||||||
|
}
|
||||||
|
|
||||||
|
char chordal_hold_handedness(keypos_t key) {
|
||||||
|
if (key.col == 0 || key.col == MATRIX_COLS - 1) {
|
||||||
|
return '*'; // Exempt the outer columns.
|
||||||
|
}
|
||||||
|
// On split keyboards, typically, the first half of the rows are on the
|
||||||
|
// left, and the other half are on the right.
|
||||||
|
return key.row < MATRIX_ROWS / 2 ? 'L' : 'R';
|
||||||
|
}
|
||||||
|
|
@ -0,0 +1,7 @@
|
||||||
|
# Charybdis (4x6) default keymap
|
||||||
|
|
||||||
|
> :bulb: Have a look at the [`via` keymap](../via) for a more feature-rich layout.
|
||||||
|
|
||||||
|
The Charydbis (4x6) default keymap is inspired from the original [Dactyl Manuform](../../../../../handwired/dactyl_manuform) default keymap.
|
||||||
|
|
||||||
|
This layout supports RGB matrix. However, due to space constraints on the MCU, only a limited number of effect can be enabled at once. Look at the `config.h` file and enable your favorite effect.
|
||||||
|
|
@ -0,0 +1,3 @@
|
||||||
|
AUTO_SHIFT_ENABLE= yes
|
||||||
|
POINTING_DEVICE_ENABLE= yes
|
||||||
|
|
||||||
15
keyboards/bastardkb/charybdis/4x6/readme.md
Normal file
15
keyboards/bastardkb/charybdis/4x6/readme.md
Normal file
|
|
@ -0,0 +1,15 @@
|
||||||
|
# Charybdis (4x6)
|
||||||
|
|
||||||
|
An ergonomic keyboard with integrated trackball.
|
||||||
|
|
||||||
|
The Charybdis is available in 4x6 and 3x5 form factor at [bastardkb.com](https://bastardkb.com).
|
||||||
|
|
||||||
|
## Keymaps
|
||||||
|
|
||||||
|
### [`default`](keymaps/default)
|
||||||
|
|
||||||
|
A simple QWERTY layout with 3 layers.
|
||||||
|
|
||||||
|
### [`via`](keymaps/via)
|
||||||
|
|
||||||
|
Same as the [default](keymaps/default) keymap, but with VIA support.
|
||||||
25
keyboards/bastardkb/charybdis/4x6/v1/elitec/config.h
Normal file
25
keyboards/bastardkb/charybdis/4x6/v1/elitec/config.h
Normal file
|
|
@ -0,0 +1,25 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2020 Christopher Courtney <drashna@live.com> (@drashna)
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define MASTER_RIGHT
|
||||||
|
|
||||||
|
/* PMW3360 settings. */
|
||||||
|
#define POINTING_DEVICE_CS_PIN B0
|
||||||
39
keyboards/bastardkb/charybdis/4x6/v1/elitec/keyboard.json
Normal file
39
keyboards/bastardkb/charybdis/4x6/v1/elitec/keyboard.json
Normal file
|
|
@ -0,0 +1,39 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis (4x6) Elite-C",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "1.0.0"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"lto": true
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "D3"
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["D5", "C7", "F0", "D7", "E6", "B4"],
|
||||||
|
"rows": ["F1", "B7", "C6", "D4", "B5"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
|
"soft_serial_pin": "D2",
|
||||||
|
"matrix_pins": {
|
||||||
|
"right": {
|
||||||
|
"cols": ["F1", "C7", "B7", "D7", "E6", "B4"],
|
||||||
|
"rows": ["D5", "F0", "C6", "D4", "B5"]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"processor": "atmega32u4",
|
||||||
|
"bootloader": "atmel-dfu"
|
||||||
|
}
|
||||||
4
keyboards/bastardkb/charybdis/4x6/v1/elitec/rules.mk
Normal file
4
keyboards/bastardkb/charybdis/4x6/v1/elitec/rules.mk
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported.
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint
|
||||||
24
keyboards/bastardkb/charybdis/4x6/v2/elitec/config.h
Normal file
24
keyboards/bastardkb/charybdis/4x6/v2/elitec/config.h
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define MASTER_RIGHT
|
||||||
|
|
||||||
|
/* PMW3360 settings. */
|
||||||
|
#define POINTING_DEVICE_CS_PIN F0
|
||||||
33
keyboards/bastardkb/charybdis/4x6/v2/elitec/keyboard.json
Normal file
33
keyboards/bastardkb/charybdis/4x6/v2/elitec/keyboard.json
Normal file
|
|
@ -0,0 +1,33 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis (4x6) Elite-C",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "2.0.0"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"lto": true
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "D3"
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["F6", "F5", "B6", "D7", "E6", "B4"],
|
||||||
|
"rows": ["F4", "F7", "C6", "D4", "B5"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
|
"soft_serial_pin": "D2"
|
||||||
|
},
|
||||||
|
"processor": "atmega32u4",
|
||||||
|
"bootloader": "atmel-dfu"
|
||||||
|
}
|
||||||
4
keyboards/bastardkb/charybdis/4x6/v2/elitec/rules.mk
Normal file
4
keyboards/bastardkb/charybdis/4x6/v2/elitec/rules.mk
Normal file
|
|
@ -0,0 +1,4 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported.
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
MOUSE_SHARED_EP = no # Unify multiple HID interfaces into a single Endpoint
|
||||||
38
keyboards/bastardkb/charybdis/4x6/v2/splinky_2/config.h
Normal file
38
keyboards/bastardkb/charybdis/4x6/v2/splinky_2/config.h
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define MASTER_RIGHT
|
||||||
|
|
||||||
|
// To use the handedness pin, resistors need to be installed on the adapter PCB.
|
||||||
|
// If so, uncomment the following code, and undefine MASTER_RIGHT above.
|
||||||
|
// #define SPLIT_HAND_PIN GP13
|
||||||
|
// #define SPLIT_HAND_PIN_LOW_IS_LEFT // High -> right, Low -> left.
|
||||||
|
|
||||||
|
/* SPI & PMW3360 settings. */
|
||||||
|
#define SPI_DRIVER SPID0
|
||||||
|
#define SPI_SCK_PIN GP18
|
||||||
|
#define SPI_MISO_PIN GP20
|
||||||
|
#define SPI_MOSI_PIN GP19
|
||||||
|
#define POINTING_DEVICE_CS_PIN GP14
|
||||||
|
|
||||||
|
/* Reset. */
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP17
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 1000U
|
||||||
31
keyboards/bastardkb/charybdis/4x6/v2/splinky_2/keyboard.json
Normal file
31
keyboards/bastardkb/charybdis/4x6/v2/splinky_2/keyboard.json
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis (4x6) Splinky",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "2.0.0"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["GP27", "GP28", "GP15", "GP6", "GP7", "GP8"],
|
||||||
|
"rows": ["GP29", "GP26", "GP5", "GP4", "GP9"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
|
"soft_serial_pin": "GP1"
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "GP0",
|
||||||
|
"driver": "vendor"
|
||||||
|
},
|
||||||
|
"processor": "RP2040",
|
||||||
|
"bootloader": "rp2040"
|
||||||
|
}
|
||||||
23
keyboards/bastardkb/charybdis/4x6/v2/splinky_2/mcuconf.h
Normal file
23
keyboards/bastardkb/charybdis/4x6/v2/splinky_2/mcuconf.h
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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>
|
||||||
|
|
||||||
|
#undef RP_SPI_USE_SPI0
|
||||||
|
#define RP_SPI_USE_SPI0 TRUE
|
||||||
5
keyboards/bastardkb/charybdis/4x6/v2/splinky_2/readme.md
Normal file
5
keyboards/bastardkb/charybdis/4x6/v2/splinky_2/readme.md
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Splinky controller
|
||||||
|
|
||||||
|
The splinky is a Pro-Micro/Elite-C replacement with USB-C and RP2040.
|
||||||
|
|
||||||
|
See [plut0nium/0xB2](https://github.com/plut0nium/0xB2/#releases) to figure out the right version for you (v2 or v3).
|
||||||
5
keyboards/bastardkb/charybdis/4x6/v2/splinky_2/rules.mk
Normal file
5
keyboards/bastardkb/charybdis/4x6/v2/splinky_2/rules.mk
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
|
||||||
|
SERIAL_DRIVER = vendor
|
||||||
38
keyboards/bastardkb/charybdis/4x6/v2/splinky_3/config.h
Normal file
38
keyboards/bastardkb/charybdis/4x6/v2/splinky_3/config.h
Normal file
|
|
@ -0,0 +1,38 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define MASTER_RIGHT
|
||||||
|
|
||||||
|
// To use the handedness pin, resistors need to be installed on the adapter PCB.
|
||||||
|
// If so, uncomment the following code, and undefine MASTER_RIGHT above.
|
||||||
|
// #define SPLIT_HAND_PIN GP15
|
||||||
|
// #define SPLIT_HAND_PIN_LOW_IS_LEFT // High -> right, Low -> left.
|
||||||
|
|
||||||
|
/* SPI & PMW3360 settings. */
|
||||||
|
#define SPI_DRIVER SPID0
|
||||||
|
#define SPI_SCK_PIN GP22
|
||||||
|
#define SPI_MISO_PIN GP20
|
||||||
|
#define SPI_MOSI_PIN GP23
|
||||||
|
#define POINTING_DEVICE_CS_PIN GP16
|
||||||
|
|
||||||
|
/* Reset. */
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_LED GP17
|
||||||
|
#define RP2040_BOOTLOADER_DOUBLE_TAP_RESET_TIMEOUT 1000U
|
||||||
31
keyboards/bastardkb/charybdis/4x6/v2/splinky_3/keyboard.json
Normal file
31
keyboards/bastardkb/charybdis/4x6/v2/splinky_3/keyboard.json
Normal file
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"keyboard_name": "Charybdis (4x6) Splinky",
|
||||||
|
"usb": {
|
||||||
|
"device_version": "2.0.0"
|
||||||
|
},
|
||||||
|
"features": {
|
||||||
|
"bootmagic": true,
|
||||||
|
"mousekey": false,
|
||||||
|
"extrakey": true,
|
||||||
|
"rgb_matrix": true,
|
||||||
|
"pointing_device": true
|
||||||
|
},
|
||||||
|
"rgb_matrix": {
|
||||||
|
"driver": "ws2812"
|
||||||
|
},
|
||||||
|
"matrix_pins": {
|
||||||
|
"cols": ["GP27", "GP28", "GP21", "GP6", "GP7", "GP8"],
|
||||||
|
"rows": ["GP29", "GP26", "GP5", "GP4", "GP9"]
|
||||||
|
},
|
||||||
|
"diode_direction": "ROW2COL",
|
||||||
|
"split": {
|
||||||
|
"enabled": true,
|
||||||
|
"soft_serial_pin": "GP1"
|
||||||
|
},
|
||||||
|
"ws2812": {
|
||||||
|
"pin": "GP0",
|
||||||
|
"driver": "vendor"
|
||||||
|
},
|
||||||
|
"processor": "RP2040",
|
||||||
|
"bootloader": "rp2040"
|
||||||
|
}
|
||||||
23
keyboards/bastardkb/charybdis/4x6/v2/splinky_3/mcuconf.h
Normal file
23
keyboards/bastardkb/charybdis/4x6/v2/splinky_3/mcuconf.h
Normal file
|
|
@ -0,0 +1,23 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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>
|
||||||
|
|
||||||
|
#undef RP_SPI_USE_SPI0
|
||||||
|
#define RP_SPI_USE_SPI0 TRUE
|
||||||
5
keyboards/bastardkb/charybdis/4x6/v2/splinky_3/readme.md
Normal file
5
keyboards/bastardkb/charybdis/4x6/v2/splinky_3/readme.md
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
# Splinky controller
|
||||||
|
|
||||||
|
The splinky is a Pro-Micro/Elite-C replacement with USB-C and RP2040.
|
||||||
|
|
||||||
|
See [plut0nium/0xB2](https://github.com/plut0nium/0xB2/#releases) to figure out the right version for you (v2 or v3).
|
||||||
5
keyboards/bastardkb/charybdis/4x6/v2/splinky_3/rules.mk
Normal file
5
keyboards/bastardkb/charybdis/4x6/v2/splinky_3/rules.mk
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
AUDIO_SUPPORTED = no # Audio is not supported
|
||||||
|
|
||||||
|
POINTING_DEVICE_DRIVER = pmw3360
|
||||||
|
|
||||||
|
SERIAL_DRIVER = vendor
|
||||||
52
keyboards/bastardkb/charybdis/4x6/v2/stemcell/config.h
Normal file
52
keyboards/bastardkb/charybdis/4x6/v2/stemcell/config.h
Normal file
|
|
@ -0,0 +1,52 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2022 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
|
||||||
|
/* Handedness. */
|
||||||
|
#define MASTER_RIGHT
|
||||||
|
|
||||||
|
// To use the handedness pin, resistors need to be installed on the adapter PCB.
|
||||||
|
// If so, uncomment the following code, and undefine MASTER_RIGHT above.
|
||||||
|
// #define A0 PAL_LINE(GPIOA, 0)
|
||||||
|
// #define SPLIT_HAND_PIN A0
|
||||||
|
// #define SPLIT_HAND_PIN_LOW_IS_LEFT // High -> right, Low -> left.
|
||||||
|
|
||||||
|
/* RGB settings. */
|
||||||
|
#define WS2812_PWM_DRIVER PWMD2
|
||||||
|
#define WS2812_PWM_CHANNEL 4
|
||||||
|
#define WS2812_PWM_PAL_MODE 1
|
||||||
|
#define WS2812_PWM_DMA_STREAM STM32_DMA1_STREAM7
|
||||||
|
#define WS2812_PWM_DMA_CHANNEL 3
|
||||||
|
|
||||||
|
/* CRC. */
|
||||||
|
#define CRC8_USE_TABLE
|
||||||
|
#define CRC8_OPTIMIZE_SPEED
|
||||||
|
|
||||||
|
/* SPI config for pmw3360 sensor. */
|
||||||
|
#define SPI_DRIVER SPID1
|
||||||
|
#define SPI_SCK_PIN A5
|
||||||
|
#define SPI_SCK_PAL_MODE 5
|
||||||
|
#define SPI_MOSI_PIN A7
|
||||||
|
#define SPI_MOSI_PAL_MODE 5
|
||||||
|
#define SPI_MISO_PIN A6
|
||||||
|
#define SPI_MISO_PAL_MODE 5
|
||||||
|
|
||||||
|
/* PMW3360 settings. */
|
||||||
|
#define POINTING_DEVICE_CS_PIN A1
|
||||||
|
#define PMW3360_CS_MODE 3
|
||||||
|
#define PMW3360_CS_DIVISOR 64
|
||||||
24
keyboards/bastardkb/charybdis/4x6/v2/stemcell/halconf.h
Normal file
24
keyboards/bastardkb/charybdis/4x6/v2/stemcell/halconf.h
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
/*
|
||||||
|
* Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
#define HAL_USE_SERIAL TRUE
|
||||||
|
#define HAL_USE_SPI TRUE
|
||||||
|
|
||||||
|
#include_next <halconf.h>
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue