1
0
Fork 0
This commit is contained in:
Jack Humbert 2015-08-16 17:51:53 -04:00
parent 07d090db8b
commit b3f638f491
20 changed files with 309 additions and 366 deletions

View file

@ -24,7 +24,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "debug.h"
#include "backlight.h"
static action_t keycode_to_action(uint16_t keycode);
@ -70,6 +69,9 @@ action_t action_for_key(uint8_t layer, keypos_t key)
} else if (keycode == RESET) {
bootloader_jump();
return;
} else if (keycode > RESET) {
// MIDI
return;
}
switch (keycode) {