qmk_firmware

QMK firmware for my keyboards (Corne, Sweep Ferris) and trackball (Ploopy Adept)
Log | Files | Refs | Submodules | LICENSE

config.h (2028B)


      1 /* Copyright 2024 Cipulot
      2  *
      3  * This program is free software: you can redistribute it and/or modify
      4  * it under the terms of the GNU General Public License as published by
      5  * the Free Software Foundation, either version 3 of the License, or
      6  * (at your option) any later version.
      7  *
      8  * This program is distributed in the hope that it will be useful,
      9  * but WITHOUT ANY WARRANTY; without even the implied warranty of
     10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     11  * GNU General Public License for more details.
     12  *
     13  * You should have received a copy of the GNU General Public License
     14  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
     15  */
     16 
     17 #pragma once
     18 
     19 #define MATRIX_ROWS 5
     20 #define MATRIX_COLS 16
     21 
     22 #define MATRIX_ROW_PINS \
     23     { A8, A15, B13, B8, B9}
     24 
     25 #define AMUX_COUNT 1
     26 #define AMUX_MAX_COLS_COUNT 16
     27 
     28 #define AMUX_EN_PINS \
     29     { B5 }
     30 
     31 #define AMUX_SEL_PINS \
     32     { B6, B7, B4, B3 }
     33 
     34 #define AMUX_COL_CHANNELS_SIZES \
     35     { 16 }
     36 
     37 #define AMUX_0_COL_CHANNELS \
     38     { 7, 6, 5, 4, 3, 2, 1, 0, 8, 15, 14, 12, 11, 13, 9, 10}
     39 
     40 #define AMUX_COL_CHANNELS AMUX_0_COL_CHANNELS
     41 
     42 #define DISCHARGE_PIN A2
     43 #define ANALOG_PORT A3
     44 
     45 #define DEFAULT_ACTUATION_MODE 0
     46 #define DEFAULT_MODE_0_ACTUATION_LEVEL 550
     47 #define DEFAULT_MODE_0_RELEASE_LEVEL 500
     48 #define DEFAULT_MODE_1_INITIAL_DEADZONE_OFFSET DEFAULT_MODE_0_ACTUATION_LEVEL
     49 #define DEFAULT_MODE_1_ACTUATION_OFFSET 70
     50 #define DEFAULT_MODE_1_RELEASE_OFFSET 70
     51 #define DEFAULT_EXTREMUM 1023
     52 #define EXPECTED_NOISE_FLOOR 0
     53 #define NOISE_FLOOR_THRESHOLD 50
     54 #define BOTTOMING_CALIBRATION_THRESHOLD 50
     55 #define DEFAULT_NOISE_FLOOR_SAMPLING_COUNT 30
     56 #define DEFAULT_BOTTOMING_READING 1023
     57 #define DEFAULT_CALIBRATION_STARTER true
     58 
     59 #define DISCHARGE_TIME 10
     60 
     61 #define EECONFIG_KB_DATA_SIZE 169
     62 
     63 // PWM driver with direct memory access (DMA) support
     64 #define WS2812_PWM_COMPLEMENTARY_OUTPUT
     65 #define WS2812_PWM_DRIVER PWMD1
     66 #define WS2812_PWM_CHANNEL 3
     67 #define WS2812_PWM_PAL_MODE 1
     68 #define WS2812_DMA_STREAM STM32_DMA2_STREAM5
     69 #define WS2812_DMA_CHANNEL 6