This repo is archived. You can view files and clone it, but cannot push or open issues or pull requests.
2011-02-21 06:43:17 +00:00
|
|
|
#ifndef KEYMAP_H
|
|
|
|
#define KEYMAP_H
|
2010-10-23 16:17:26 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include "usb_keycodes.h"
|
|
|
|
|
|
|
|
|
2010-10-29 06:17:18 +00:00
|
|
|
/* keycode in specific layer */
|
|
|
|
uint8_t keymap_get_keycode(uint8_t layer, uint8_t row, uint8_t col);
|
2010-10-23 16:17:26 +00:00
|
|
|
|
2010-10-29 06:17:18 +00:00
|
|
|
/* layer to move during press Fn key */
|
2011-01-06 06:37:14 +00:00
|
|
|
uint8_t keymap_fn_layer(uint8_t fn_bits);
|
2010-10-29 06:17:18 +00:00
|
|
|
|
|
|
|
/* keycode to send when release Fn key without using */
|
|
|
|
uint8_t keymap_fn_keycode(uint8_t fn_bits);
|
|
|
|
|
2010-10-23 16:17:26 +00:00
|
|
|
#endif
|