]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/keymap.h
Merge pull request #1915 from dondelelcaro/ergodox_ez_left_leds
[qmk_firmware.git] / quantum / keymap.h
1 /*
2 Copyright 2012-2016 Jun Wako <wakojun@gmail.com>
3
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation, either version 2 of the License, or
7 (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along 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"
24 #if defined(__AVR__)
25 #include <avr/pgmspace.h>
26 #endif
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
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
41 #include "quantum_keycodes.h"
42
43 // translates key to keycode
44 uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key);
45
46 // translates function id to action
47 uint16_t keymap_function_id_to_action( uint16_t function_id );
48
49 extern const uint16_t keymaps[][MATRIX_ROWS][MATRIX_COLS];
50 extern const uint16_t fn_actions[];
51
52
53 #endif