upload
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。

123456789101112131415161718192021
  1. #ifndef TV44_H
  2. #define TV44_H
  3. #include "matrix.h"
  4. #include "keymap_common.h"
  5. #ifdef BACKLIGHT_ENABLE
  6. #include "backlight.h"
  7. #endif
  8. #ifdef RGBLIGHT_ENABLE
  9. #include "rgblight1.h"
  10. #endif
  11. #include <stddef.h>
  12. #ifdef MIDI_ENABLE
  13. #include <keymap_midi.h>
  14. #endif
  15. void matrix_init_user(void);
  16. void matrix_scan_user(void);
  17. void process_action_user(keyrecord_t *record);
  18. #endif