v2.c 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* Copyright 2017 MechMerlin <mechmerlin@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 "v2.h"
  17. #include "indicator_leds.h"
  18. enum BACKLIGHT_AREAS {
  19. BACKLIGHT_ALPHAS = 0b00000010,
  20. BACKLIGHT_MODNUM = 0b00001000
  21. };
  22. void backlight_set(uint8_t level) {
  23. switch(level) {
  24. case 0:
  25. PORTB |= BACKLIGHT_ALPHAS;
  26. PORTB |= BACKLIGHT_MODNUM;
  27. break;
  28. case 1:
  29. PORTB &= ~BACKLIGHT_ALPHAS;
  30. PORTB |= BACKLIGHT_MODNUM;
  31. break;
  32. case 2:
  33. PORTB |= BACKLIGHT_ALPHAS;
  34. PORTB &= ~BACKLIGHT_MODNUM;
  35. break;
  36. case 3:
  37. PORTB &= ~BACKLIGHT_ALPHAS;
  38. PORTB &= ~BACKLIGHT_MODNUM;
  39. break;
  40. }
  41. }
  42. // Port from backlight_update_state
  43. void led_set_kb(uint8_t usb_led) {
  44. bool status[8] = {
  45. host_keyboard_leds() & (1<<USB_LED_SCROLL_LOCK), /* LED 3 */
  46. host_keyboard_leds() & (1<<USB_LED_CAPS_LOCK), /* LED 2 */
  47. host_keyboard_leds() & (1<<USB_LED_NUM_LOCK), /* LED 1 */
  48. layer_state & (1<<2), /* LED 6 */
  49. layer_state & (1<<1), /* LED 5 */
  50. layer_state & (1<<0) ? 0: 1, /* LED 4 */
  51. layer_state & (1<<5), /* LED 8 */
  52. layer_state & (1<<4) /* LED 7 */
  53. };
  54. indicator_leds_set(status);
  55. }
  56. bool process_record_kb(uint16_t keycode, keyrecord_t *record) {
  57. return process_record_user(keycode, record);
  58. }