You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
2.3 KiB

  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. #define MATRIX_ROWS 5
  17. #define MATRIX_COLS 15
  18. #define MATRIX_ROW_PINS \
  19. { B14, B13, B12, A6, A7 }
  20. #define AMUX_COUNT 2
  21. #define AMUX_MAX_COLS_COUNT 8
  22. #define AMUX_EN_PINS \
  23. { B9, B8 }
  24. #define AMUX_SEL_PINS \
  25. { B7, B6, B5 }
  26. #define AMUX_COL_CHANNELS_SIZES \
  27. { 7, 8 }
  28. #define AMUX_0_COL_CHANNELS \
  29. { 3, 0, 1, 2, 4, 6, 7 }
  30. #define AMUX_1_COL_CHANNELS \
  31. { 3, 0, 1, 2, 4, 6, 7, 5 }
  32. #define AMUX_COL_CHANNELS AMUX_0_COL_CHANNELS, AMUX_1_COL_CHANNELS
  33. #define DISCHARGE_PIN A1
  34. #define ANALOG_PORT A2
  35. #define DEFAULT_ACTUATION_MODE 0
  36. #define DEFAULT_MODE_0_ACTUATION_LEVEL 550
  37. #define DEFAULT_MODE_0_RELEASE_LEVEL 500
  38. #define DEFAULT_MODE_1_INITIAL_DEADZONE_OFFSET DEFAULT_MODE_0_ACTUATION_LEVEL
  39. #define DEFAULT_MODE_1_ACTUATION_OFFSET 70
  40. #define DEFAULT_MODE_1_RELEASE_OFFSET 70
  41. #define DEFAULT_EXTREMUM 1023
  42. #define EXPECTED_NOISE_FLOOR 0
  43. #define NOISE_FLOOR_THRESHOLD 50
  44. #define BOTTOMING_CALIBRATION_THRESHOLD 100
  45. #define DEFAULT_NOISE_FLOOR_SAMPLING_COUNT 30
  46. #define DEFAULT_BOTTOMING_READING 1023
  47. #define DEFAULT_CALIBRATION_STARTER true
  48. #define DISCHARGE_TIME 10
  49. // #define DEBUG_MATRIX_SCAN_RATE
  50. #define EECONFIG_KB_DATA_SIZE 171
  51. // RGB & Indicators
  52. // PWM driver with direct memory access (DMA) support
  53. #define WS2812_PWM_COMPLEMENTARY_OUTPUT
  54. #define WS2812_PWM_DRIVER PWMD1
  55. #define WS2812_PWM_CHANNEL 3
  56. #define WS2812_PWM_PAL_MODE 1
  57. #define WS2812_DMA_STREAM STM32_DMA2_STREAM5
  58. #define WS2812_DMA_CHANNEL 6
  59. #define WS2812_DMAMUX_ID STM32_DMAMUX1_TIM1_UP
  60. #define RGBLIGHT_DEFAULT_VAL 200
  61. #define RGBLIGHT_DEFAULT_MODE (RGBLIGHT_MODE_RAINBOW_SWIRL + 5)
  62. #define NUM_INDICATOR_INDEX 2
  63. #define CAPS_INDICATOR_INDEX 1
  64. #define SCROLL_INDICATOR_INDEX 0