upload
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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

tv44.c 547B

123456789101112131415161718192021222324252627282930
  1. #include "tv44.h"
  2. #include <avr/eeprom.h>
  3. #include <avr/interrupt.h>
  4. #include <util/delay.h>
  5. #include "progmem.h"
  6. __attribute__ ((weak))
  7. void matrix_init_user(void) {}
  8. __attribute__ ((weak))
  9. void matrix_scan_user(void) {}
  10. __attribute__ ((weak))
  11. void process_action_user(keyrecord_t *record) {}
  12. void matrix_init_kb(void) {
  13. #ifdef BACKLIGHT_ENABLE
  14. backlight_init_ports();
  15. #endif
  16. matrix_init_user();
  17. }
  18. void matrix_scan_kb(void) {
  19. matrix_scan_user();
  20. bl_set();
  21. }
  22. void process_action_kb(keyrecord_t *record) {
  23. process_action_user(record);
  24. }