2x1800.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /* Copyright 2017 Zach White <skullydazed@gmail.com>
  2. *
  3. * This program is free software: you can redistribute it and/or modify
  4. * it under the terms of the GNU General Public License as published by
  5. * the Free Software Foundation, either version 2 of the License, or
  6. * (at your option) any later version.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. *
  13. * You should have received a copy of the GNU General Public License
  14. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  15. */
  16. #include "2x1800.h"
  17. void matrix_init_kb(void) {
  18. // Set our LED pins as output
  19. DDRB |= (1<<4); // Numlock
  20. DDRB |= (1<<5); // Capslock
  21. DDRB |= (1<<6); // Scroll Lock
  22. // JTAG disable for PORT F. write JTD bit twice within four cycles.
  23. MCUCR |= (1<<JTD);
  24. MCUCR |= (1<<JTD);
  25. // Run the keymap level init
  26. matrix_init_user();
  27. }
  28. void matrix_scan_kb(void) {
  29. matrix_scan_user();
  30. }
  31. bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
  32. return process_record_user(keycode, record);
  33. }
  34. void led_set_kb(uint8_t usb_led) {
  35. if (usb_led & (1<<USB_LED_NUM_LOCK)) {
  36. // Turn numlock on
  37. PORTB |= (1<<4);
  38. } else {
  39. // Turn numlock off
  40. PORTB &= ~(1<<4);
  41. }
  42. if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
  43. // Turn capslock on
  44. PORTB |= (1<<5);
  45. } else {
  46. // Turn capslock off
  47. PORTB &= ~(1<<5);
  48. }
  49. if (usb_led & (1<<USB_LED_SCROLL_LOCK)) {
  50. // Turn scroll lock on
  51. PORTB |= (1<<6);
  52. } else {
  53. // Turn scroll lock off
  54. PORTB &= ~(1<<6);
  55. }
  56. }