Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Ce dépôt est archivé. Vous pouvez voir les fichiers et le cloner, mais vous ne pouvez pas pousser ni ouvrir de ticket/demande d'ajout.

config_vusb.h 643B

1234567891011121314151617181920212223242526272829303132
  1. #ifndef CONFIG_H
  2. #define CONFIG_H
  3. #define VENDOR_ID 0xFEED
  4. #define PRODUCT_ID 0xC0FE
  5. // TODO: share these strings with usbconfig.h
  6. // Edit usbconfig.h to change these.
  7. #define MANUFACTURER t.m.k.
  8. #define PRODUCT HHKB mod
  9. #define DESCRIPTION t.m.k. keyboard firmware for HHKB mod
  10. /* matrix size */
  11. #define MATRIX_ROWS 8
  12. #define MATRIX_COLS 8
  13. /* key combination for command */
  14. #define IS_COMMAND() ( \
  15. keyboard_report->mods == (BIT_LSHIFT | BIT_RSHIFT) || \
  16. keyboard_report->mods == (BIT_LCTRL | BIT_RSHIFT) \
  17. )
  18. /* mouse keys */
  19. #ifdef MOUSEKEY_ENABLE
  20. # define MOUSEKEY_DELAY_TIME 255
  21. #endif
  22. #endif