config.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. Copyright 2019 Holten Campbell
  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 2 of the License, or
  6. (at your option) any later version.
  7. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #pragma once
  15. #include "config_common.h"
  16. /* USB Device descriptor parameter */
  17. #define VENDOR_ID 0x5052
  18. #define PRODUCT_ID 0x0051
  19. #define DEVICE_VER 0x0001
  20. #define MANUFACTURER PrimeKB
  21. #define PRODUCT Prime_E
  22. #define DESCRIPTION Ergo_45
  23. /* key matrix size */
  24. #define MATRIX_ROWS 4
  25. #define MATRIX_COLS 13
  26. /* Keyboard Matrix Assignments */
  27. #define MATRIX_ROW_PINS { E6, C7, B5, B4 }
  28. #define MATRIX_COL_PINS { F0, F1, F4, F5, F6, F7, D6, D4, D5, D3, D2, D1, D0 }
  29. #define UNUSED_PINS
  30. /* COL2ROW, ROW2COL, or CUSTOM_MATRIX */
  31. #define DIODE_DIRECTION COL2ROW
  32. #define BACKLIGHT_PIN B7
  33. #define BACKLIGHT_LEVELS 5
  34. /* Debounce reduces chatter (unintended double-presses) - set 0 if debouncing is not needed */
  35. #define DEBOUNCING_DELAY 5
  36. /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */
  37. #define LOCKING_SUPPORT_ENABLE
  38. /* Locking resynchronize hack */
  39. #define LOCKING_RESYNC_ENABLE
  40. #define DYNAMIC_KEYMAP_LAYER_COUNT 4
  41. // EEPROM usage
  42. // TODO: refactor with new user EEPROM code (coming soon)
  43. #define EEPROM_MAGIC 0x451F
  44. #define EEPROM_MAGIC_ADDR 32
  45. // Bump this every time we change what we store
  46. // This will automatically reset the EEPROM with defaults
  47. // and avoid loading invalid data from the EEPROM
  48. #define EEPROM_VERSION 0x08
  49. #define EEPROM_VERSION_ADDR 34
  50. // Dynamic keymap starts after EEPROM version
  51. #define DYNAMIC_KEYMAP_EEPROM_ADDR 35
  52. // Dynamic macro starts after dynamic keymaps (35+(4*13*4*2)) = (35+416)
  53. #define DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR 451
  54. #define DYNAMIC_KEYMAP_MACRO_EEPROM_SIZE 573 // 1024-DYNAMIC_KEYMAP_MACRO_EEPROM_ADDR
  55. #define DYNAMIC_KEYMAP_MACRO_COUNT 16