tmk_keyboard/layer.h

16 lines
280 B
C
Raw Permalink Normal View History

2010-10-29 02:17:18 -04:00
#ifndef LAYER_H
#define LAYER_H 1
#include <stdint.h>
2011-02-10 01:51:30 -05:00
extern uint8_t default_layer;
extern uint8_t current_layer;
2010-10-29 02:17:18 -04:00
/* return keycode for switch */
uint8_t layer_get_keycode(uint8_t row, uint8_t col);
/* process layer switching */
void layer_switching(uint8_t fn_bits);
#endif