logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

config.h (2049B)


  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. #pragma once
  17. #define MATRIX_ROWS 6
  18. #define MATRIX_COLS 18
  19. #define UNUSED_POSITIONS_LIST { {0, 6}, {0, 14}, {3, 14}, {3, 15}, {3, 16}, {3, 17}, {4, 12}, {4, 15}, {4, 17}, {5, 1}, {5, 4}, {5, 8}, {5, 11}, {5, 12}, {5, 14} }
  20. #define MATRIX_ROW_PINS \
  21. { B6, B7, B5, B4, B3, A15 }
  22. #define AMUX_COUNT 2
  23. #define AMUX_MAX_COLS_COUNT 16
  24. #define AMUX_EN_PINS \
  25. { A9, A8 }
  26. #define AMUX_SEL_PINS \
  27. { B12, B13, B15, B14 }
  28. #define AMUX_COL_CHANNELS_SIZES \
  29. { 7, 11 }
  30. #define AMUX_0_COL_CHANNELS \
  31. { 2, 1, 0, 3, 5, 4, 7 }
  32. #define AMUX_1_COL_CHANNELS \
  33. { 2, 1, 0, 15, 14, 13, 12, 8, 11, 10, 9 }
  34. #define AMUX_COL_CHANNELS AMUX_0_COL_CHANNELS, AMUX_1_COL_CHANNELS
  35. #define DISCHARGE_PIN A4
  36. #define ANALOG_PORT A3
  37. #define DEFAULT_ACTUATION_MODE 0
  38. #define DEFAULT_MODE_0_ACTUATION_LEVEL 550
  39. #define DEFAULT_MODE_0_RELEASE_LEVEL 500
  40. #define DEFAULT_MODE_1_INITIAL_DEADZONE_OFFSET DEFAULT_MODE_0_ACTUATION_LEVEL
  41. #define DEFAULT_MODE_1_ACTUATION_OFFSET 70
  42. #define DEFAULT_MODE_1_RELEASE_OFFSET 70
  43. #define DEFAULT_EXTREMUM 1023
  44. #define EXPECTED_NOISE_FLOOR 0
  45. #define NOISE_FLOOR_THRESHOLD 50
  46. #define BOTTOMING_CALIBRATION_THRESHOLD 50
  47. #define DEFAULT_NOISE_FLOOR_SAMPLING_COUNT 30
  48. #define DEFAULT_BOTTOMING_READING 1023
  49. #define DEFAULT_CALIBRATION_STARTER true
  50. #define DISCHARGE_TIME 10
  51. // #define DEBUG_MATRIX_SCAN_RATE
  52. #define EECONFIG_KB_DATA_SIZE 225