Keyboards/RGBKB/Mün (#13239)
This commit is contained in:
parent
f8c01a8e5a
commit
8b059088ba
27 changed files with 2049 additions and 0 deletions
106
keyboards/rgbkb/mun/config.h
Normal file
106
keyboards/rgbkb/mun/config.h
Normal file
|
@ -0,0 +1,106 @@
|
|||
/*
|
||||
* ----------------------------------------------------------------------------
|
||||
* "THE BEER-WARE LICENSE" (Revision 42):
|
||||
* <https://github.com/Legonut> wrote this file. As long as you retain this
|
||||
* notice you can do whatever you want with this stuff. If we meet some day, and
|
||||
* you think this stuff is worth it, you can buy me a beer in return. David Rauseo
|
||||
* ----------------------------------------------------------------------------
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "config_common.h"
|
||||
|
||||
/* USB Device descriptor parameter */
|
||||
#define VENDOR_ID 0x3535
|
||||
#define PRODUCT_ID 0x3505
|
||||
#define MANUFACTURER RGBKB
|
||||
#define PRODUCT Mün
|
||||
|
||||
#define USB_POLLING_INTERVAL_MS 1
|
||||
|
||||
/* Matrix Configuration - Rows are doubled up */
|
||||
#define MATRIX_ROWS 14
|
||||
// B1, A2 reserved for encoder / touch encoder support
|
||||
#define MATRIX_ROW_PINS { A1, A3, B3, A13, B15, B1, A2 }
|
||||
#define MATRIX_COLS 7
|
||||
#define MATRIX_COL_PINS { A0, B11, B0, B10, B12, B2, A8 }
|
||||
#define MATRIX_IO_DELAY 5
|
||||
|
||||
#define BUSY_WAIT
|
||||
#define BUSY_WAIT_INSTRUCTIONS 35 // Increase if two rows are pressed at the same time.
|
||||
#define GPIO_INPUT_PIN_DELAY 10
|
||||
|
||||
/* Touchbar adjustments */
|
||||
#define TOUCH_DEADZONE 50 // width of a "button", wider inputs will be interpreted as a swipe
|
||||
#define TOUCH_TERM 350 // time of a "button" touch, longer inputs will be a swipe
|
||||
#define TOUCH_RESOLUTION 25 // sensitivity of swipes, lower=faster
|
||||
|
||||
/* Encoder Configuration */
|
||||
#define ENCODERS_PAD_A { B8, B9 }
|
||||
#define ENCODERS_PAD_B { A14, A15 }
|
||||
#define TOUCH_SEGMENTS 3
|
||||
|
||||
/* COL2ROW or ROW2COL */
|
||||
#define DIODE_DIRECTION COL2ROW
|
||||
|
||||
/* CRC Configuration */
|
||||
#define CRC8_OPTIMIZE_SPEED
|
||||
#define CRC8_USE_TABLE
|
||||
|
||||
/* Split Keyboard Configuration */
|
||||
#define EE_HANDS
|
||||
#define SPLIT_USB_DETECT
|
||||
// also handles the SERIAL_USART_TX_PIN define
|
||||
#define SOFT_SERIAL_PIN A9
|
||||
#define SERIAL_USART_TX_PAL_MODE 7
|
||||
#define SERIAL_USART_TIMEOUT 5
|
||||
#define SERIAL_USART_DRIVER SD1
|
||||
//#define SERIAL_USART_FULL_DUPLEX - Waiting on reunification pr
|
||||
#if SERIAL_USART_FULL_DUPLEX
|
||||
#define SERIAL_USART_RX_PIN A10
|
||||
#define SERIAL_USART_RX_PAL_MODE 7
|
||||
// Mun connects TX to TX and RX to RX as we were planning on i2c split, so we need pin swap for full duplex
|
||||
#define SERIAL_USART_PIN_SWAP
|
||||
#define SERIAL_USART_SPEED (2 * 1024 * 1024)
|
||||
#else
|
||||
#define SERIAL_USART_SPEED (1 * 1024 * 1024)
|
||||
#endif
|
||||
|
||||
/* Split Transport Features */
|
||||
#define SPLIT_TRANSPORT_MIRROR
|
||||
#define SPLIT_LAYER_STATE_ENABLE
|
||||
#define SPLIT_LED_STATE_ENABLE
|
||||
#define SPLIT_TRANSACTION_IDS_KB TOUCH_ENCODER_SYNC, RGB_MENU_SYNC
|
||||
|
||||
/* RGB LED Configuration */
|
||||
#define RGB_DI_PIN B5
|
||||
#define RGBLED_NUM 98
|
||||
#define RGBLED_SPLIT { 49, 49 }
|
||||
#define RGBLIGHT_ANIMATIONS
|
||||
|
||||
#define DRIVER_LED_TOTAL RGBLED_NUM
|
||||
#define RGB_MATRIX_SPLIT RGBLED_SPLIT
|
||||
#define RGB_MATRIX_CENTER { 128, 34 }
|
||||
#define RGB_MATRIX_LED_FLUSH_LIMIT 33
|
||||
#define RGB_MATRIX_LED_PROCESS_LIMIT 10
|
||||
#define RGB_MATRIX_KEYPRESSES
|
||||
#define RGB_MATRIX_FRAMEBUFFER_EFFECTS
|
||||
#define RGB_DISABLE_WHEN_USB_SUSPENDED true
|
||||
|
||||
#if RGB_UNLIMITED_POWER
|
||||
#define RGBLIGHT_LIMIT_VAL 255
|
||||
#else
|
||||
#define RGBLIGHT_LIMIT_VAL 127
|
||||
#endif
|
||||
#define RGB_MATRIX_MAXIMUM_BRIGHTNESS RGBLIGHT_LIMIT_VAL
|
||||
|
||||
#define WS2812_PWM_DRIVER PWMD3
|
||||
#define WS2812_PWM_CHANNEL 2
|
||||
#define WS2812_PWM_PAL_MODE 2
|
||||
#define WS2812_DMA_STREAM STM32_DMA1_STREAM3
|
||||
#define WS2812_DMA_CHANNEL 3
|
||||
|
||||
#define TOUCH_UPDATE_INTERVAL 33
|
||||
#define OLED_UPDATE_INTERVAL 33
|
||||
#define TAP_CODE_DELAY 5
|
Loading…
Add table
Add a link
Reference in a new issue