logo

qmk_firmware

custom branch of QMK firmware git clone https://anongit.hacktivis.me/git/qmk_firmware.git

v2.c (1792B)


  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 "quantum.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. bool led_update_kb(led_t led_state) {
  43. bool res = led_update_user(led_state);
  44. if(res) {
  45. bool status[8] = {
  46. led_state.scroll_lock, /* LED 3 */
  47. led_state.caps_lock, /* LED 2 */
  48. led_state.num_lock, /* LED 1 */
  49. layer_state & (1<<2), /* LED 6 */
  50. layer_state & (1<<1), /* LED 5 */
  51. layer_state & (1<<0) ? 0: 1, /* LED 4 */
  52. layer_state & (1<<5), /* LED 8 */
  53. layer_state & (1<<4) /* LED 7 */
  54. };
  55. indicator_leds_set(status);
  56. }
  57. return res;
  58. }