hid_liber.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* Copyright 2012 Jun Wako <wakojun@gmail.com>: LED init
  2. * Copyright 2017 Mathias Andersson <wraul@dbox.se>: Phantom config
  3. * Copyright 2018 bakageta <amo@bakageta.com>
  4. *
  5. * This program is free software: you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation, either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. #include "hid_liber.h"
  19. void matrix_init_kb(void) {
  20. // put your keyboard start-up code here
  21. // runs once when the firmware starts up
  22. led_init_ports();
  23. matrix_init_user();
  24. }
  25. void matrix_scan_kb(void) {
  26. // put your looping keyboard code here
  27. // runs every cycle (a lot)
  28. matrix_scan_user();
  29. }
  30. bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
  31. // put your per-action keyboard code here
  32. // runs for every action, just before processing by the firmware
  33. return process_record_user(keycode, record);
  34. }
  35. void led_init_ports(void) {
  36. DDRB |= (1<<5) | (1<<6); // OUT
  37. }
  38. void led_set_kb(uint8_t usb_led) {
  39. if (usb_led & (1<<USB_LED_CAPS_LOCK))
  40. PORTB &= ~(1<<5);
  41. else
  42. PORTB |= (1<<5);
  43. if (usb_led & (1<<USB_LED_SCROLL_LOCK))
  44. PORTB &= ~(1<<6);
  45. else
  46. PORTB |= (1<<6);
  47. led_set_user(usb_led);
  48. }