]> git.donarmstrong.com Git - qmk_firmware.git/blob - quantum/keymap.h
[Keyboard] leds in default keymap (#6357)
[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 #elif defined PROTOCOL_CHIBIOS
27 //We need to ensure that chibios is include before redefining reset
28 #include "ch.h"
29 #endif
30 #include "keycode.h"
31 #include "action_macro.h"
32 #include "report.h"
33 #include "host.h"
34 // #include "print.h"
35 #include "debug.h"
36 #include "keycode_config.h"
37
38 // ChibiOS uses RESET in its FlagStatus enumeration
39 // Therefore define it as QK_RESET here, to avoid name collision
40 #if defined(PROTOCOL_CHIBIOS)
41 #define RESET QK_RESET
42 #endif
43
44 #include "quantum_keycodes.h"
45
46 // translates key to keycode
47 uint16_t keymap_key_to_keycode(uint8_t layer, keypos_t key);
48
49 // translates function id to action
50 uint16_t keymap_function_id_to_action( uint16_t function_id );
51
52 extern const uint16_t keymaps[][MATRIX_ROWS][MATRIX_COLS];
53 extern const uint16_t fn_actions[];
54
55
56 #endif