Merge pull request #1003 from mneme/master
[jackhill/qmk/firmware.git] / quantum / keymap.h
CommitLineData
db32864c
JH
1/*
2Copyright 2012,2013 Jun Wako <wakojun@gmail.com>
3
4This program is free software: you can redistribute it and/or modify
5it under the terms of the GNU General Public License as published by
6the Free Software Foundation, either version 2 of the License, or
7(at your option) any later version.
8
9This program is distributed in the hope that it will be useful,
10but WITHOUT ANY WARRANTY; without even the implied warranty of
11MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12GNU General Public License for more details.
13
14You should have received a copy of the GNU General Public License
15along with this program. If not, see <http://www.gnu.org/licenses/>.
16*/
17
18#ifndef KEYMAP_H
19#define KEYMAP_H
20
21#include <stdint.h>
22#include <stdbool.h>
23#include "action.h"
4d4f7684 24#if defined(__AVR__)
db32864c 25#include <avr/pgmspace.h>
4d4f7684 26#endif
db32864c
JH
27#include "keycode.h"
28#include "action_macro.h"
29#include "report.h"
30#include "host.h"
31// #include "print.h"
32#include "debug.h"
33#include "keycode_config.h"
34
4d4f7684 35// ChibiOS uses RESET in its FlagStatus enumeration
36// Therefore define it as QK_RESET here, to avoid name collision
37#if defined(PROTOCOL_CHIBIOS)
38#define RESET QK_RESET
39#endif
40
d8a608f3
W
41#include "quantum_keycodes.h"
42
43// translates key to keycode
db32864c
JH
44uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key);
45
d8a608f3
W
46// translates function id to action
47uint16_t keymap_function_id_to_action( uint16_t function_id );
48
db32864c
JH
49extern const uint16_t keymaps[][MATRIX_ROWS][MATRIX_COLS];
50extern const uint16_t fn_actions[];
51
db32864c
JH
52
53#endif