1
0
Fork 0

Remove empty action_function()

This commit is contained in:
fauxpark 2019-01-11 10:58:59 +11:00 committed by Drashna Jaelre
parent 67adc29aa3
commit 3ea7c2a434
7 changed files with 0 additions and 94 deletions

View file

@ -69,24 +69,3 @@ const uint16_t fn_actions[] = {
[7] = ACTION_USAGE_CONSUMER(0x1A0),
};
/* custom action function */
void action_function(keyrecord_t *record, uint8_t id, uint8_t opt) {
/*
(void)opt;
switch(id) {
case ACTION_LEDS_ALL:
if(record->event.pressed) {
// signal the LED controller thread
chMBPost(&led_mailbox, LED_MSG_GAME_TOGGLE, TIME_IMMEDIATE);
}
break;
case ACTION_LEDS_GAME:
if(record->event.pressed) {
// signal the LED controller thread
chMBPost(&led_mailbox, LED_MSG_ALL_TOGGLE, TIME_IMMEDIATE);
}
break;
}
*/
}