led.c 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. /*
  2. Copyright 2015 Jun Wako <wakojun@gmail.com>
  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. This program is distributed in the hope that it will be useful,
  8. but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. GNU General Public License for more details.
  11. You should have received a copy of the GNU General Public License
  12. along with this program. If not, see <http://www.gnu.org/licenses/>.
  13. */
  14. #include "hal.h"
  15. #include "led.h"
  16. #include "led_controller.h"
  17. /* WARNING! This function needs to be callable from
  18. * both regular threads and ISRs, unlocked (during resume-from-sleep).
  19. * In particular, I2C functions (interrupt-driven) should NOT be called from here.
  20. */
  21. void led_set(uint8_t usb_led) {
  22. /*
  23. // PTA5: LED (1:on/0:off)
  24. GPIOA->PDDR |= (1<<1);
  25. PORTA->PCR[5] |= PORTx_PCRn_DSE | PORTx_PCRn_MUX(1);
  26. if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
  27. GPIOA->PSOR |= (1<<5);
  28. } else {
  29. GPIOA->PCOR |= (1<<5);
  30. }
  31. */
  32. //TODO: How does this test if led is set
  33. //usb_led --> led_set(usb_led) <-- chibios/host_keyboard_leds <-- keyboard_leds from usbSetupTransfer
  34. //keyboard_leds is enum'd in chibios/main.c
  35. if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
  36. // signal the LED control thread
  37. chSysUnconditionalLock();
  38. chMBPostI(&led_mailbox, 0x59);
  39. chSysUnconditionalUnlock();
  40. } else {
  41. // signal the LED control thread
  42. chSysUnconditionalLock();
  43. chMBPostI(&led_mailbox, 0x59);
  44. chSysUnconditionalUnlock();
  45. }
  46. }