config.h 761 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. #ifndef CONFIG_USER_H
  2. #define CONFIG_USER_H
  3. #include "../../config.h"
  4. /* USB Device descriptor parameter */
  5. #undef VENDOR_ID
  6. #undef PRODUCT_ID
  7. #undef MANUFACTURER
  8. #undef PRODUCT
  9. #undef DESCRIPTION
  10. #undef MATRIX_ROW_PINS
  11. #undef MATRIX_COL_PINS
  12. #undef UNUSED_PINS
  13. #undef BACKLIGHT_PIN
  14. #undef BACKLIGHT_LEVELS
  15. #define VENDOR_ID 0xFEED
  16. #define PRODUCT_ID 0x6060
  17. #define MANUFACTURER binaryplease
  18. #define PRODUCT Teensy_Planck
  19. #define DESCRIPTION A compact ortholinear keyboard using a teensy 2.0
  20. #define MATRIX_ROW_PINS { D3, D2, D1, D0 }
  21. #define MATRIX_COL_PINS { F0, F1, F4, F5, F6, F7, B6, B5, B4, D7, D6, D4 }
  22. #define UNUSED_PINS
  23. #define BACKLIGHT_PIN B7
  24. /* number of backlight levels */
  25. #define BACKLIGHT_LEVELS 0
  26. #endif