config.h (1956B)
1 /* Copyright 2023 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 14 21 22 #define UNUSED_POSITIONS_LIST { {3, 13}, {4, 3}, {4, 4}, {4, 6}, {4, 7}, {4, 8}, {4, 9}, {4, 13} } 23 24 #define MATRIX_ROW_PINS \ 25 { B13, B14, B15, A8, A15 } 26 27 #define AMUX_COUNT 2 28 #define AMUX_MAX_COLS_COUNT 8 29 30 #define AMUX_EN_PINS \ 31 { B7, B3 } 32 33 #define AMUX_SEL_PINS \ 34 { B6, B5, B4 } 35 36 #define AMUX_COL_CHANNELS_SIZES \ 37 { 8, 6 } 38 39 #define AMUX_0_COL_CHANNELS \ 40 { 0, 3, 1, 2, 4, 5, 6, 7 } 41 42 #define AMUX_1_COL_CHANNELS \ 43 { 0, 3, 1, 2, 4, 5 } 44 45 #define AMUX_COL_CHANNELS AMUX_0_COL_CHANNELS, AMUX_1_COL_CHANNELS 46 47 #define DISCHARGE_PIN A3 48 #define ANALOG_PORT A2 49 50 #define DEFAULT_ACTUATION_MODE 0 51 #define DEFAULT_MODE_0_ACTUATION_LEVEL 550 52 #define DEFAULT_MODE_0_RELEASE_LEVEL 500 53 #define DEFAULT_MODE_1_INITIAL_DEADZONE_OFFSET DEFAULT_MODE_0_ACTUATION_LEVEL 54 #define DEFAULT_MODE_1_ACTUATION_OFFSET 70 55 #define DEFAULT_MODE_1_RELEASE_OFFSET 70 56 #define DEFAULT_EXTREMUM 1023 57 #define EXPECTED_NOISE_FLOOR 0 58 #define NOISE_FLOOR_THRESHOLD 50 59 #define BOTTOMING_CALIBRATION_THRESHOLD 100 60 #define DEFAULT_NOISE_FLOOR_SAMPLING_COUNT 30 61 #define DEFAULT_BOTTOMING_READING 1023 62 #define DEFAULT_CALIBRATION_STARTER true 63 64 #define DISCHARGE_TIME 10 65 66 // #define DEBUG_MATRIX_SCAN_RATE 67 68 #define EECONFIG_KB_DATA_SIZE 149