CLeaned out debug code
This commit is contained in:
parent
52f671c23e
commit
2c5b551970
3 changed files with 13 additions and 265 deletions
|
@ -29,26 +29,22 @@ void led_set(uint8_t usb_led) {
|
|||
msg_t msg;
|
||||
|
||||
if (usb_led & (1<<USB_LED_NUM_LOCK)) {
|
||||
// signal the LED control thread
|
||||
chSysUnconditionalLock();
|
||||
msg=(TOGGLE_NUM_LOCK << 8) | 1;
|
||||
chMBPostI(&led_mailbox, msg);
|
||||
chSysUnconditionalUnlock();
|
||||
} else {
|
||||
// signal the LED control thread
|
||||
chSysUnconditionalLock();
|
||||
msg=(TOGGLE_NUM_LOCK << 8) | 0;
|
||||
chMBPostI(&led_mailbox, msg);
|
||||
chSysUnconditionalUnlock();
|
||||
}
|
||||
if (usb_led & (1<<USB_LED_CAPS_LOCK)) {
|
||||
// signal the LED control thread
|
||||
chSysUnconditionalLock();
|
||||
msg=(TOGGLE_CAPS_LOCK << 8) | 1;
|
||||
chMBPostI(&led_mailbox, msg);
|
||||
chSysUnconditionalUnlock();
|
||||
} else {
|
||||
// signal the LED control thread
|
||||
chSysUnconditionalLock();
|
||||
msg=(TOGGLE_CAPS_LOCK << 8) | 0;
|
||||
chMBPostI(&led_mailbox, msg);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue