]> git.gir.st - tmk_keyboard.git/blob - common/action_macro.c
Add NO_ACTION_TAPPING and NO_ACTION_MACRO config options
[tmk_keyboard.git] / common / action_macro.c
1 /*
2 Copyright 2013 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 #include <util/delay.h>
18 #include "debug.h"
19 #include "action.h"
20 #include "action_macro.h"
21
22
23 #ifndef NO_ACTION_MACRO
24
25 #define MACRO_READ() (macro = pgm_read_byte(macro_p++))
26 void action_macro_play(const prog_macro_t *macro_p)
27 {
28 macro_t macro = END;
29 uint8_t interval = 0;
30
31 if (!macro_p) return;
32 while (true) {
33 switch (MACRO_READ()) {
34 case INTERVAL:
35 interval = MACRO_READ();
36 debug("INTERVAL("); debug_dec(interval); debug(")\n");
37 break;
38 case WAIT:
39 MACRO_READ();
40 debug("WAIT("); debug_dec(macro); debug(")\n");
41 { uint8_t ms = macro; while (ms--) _delay_ms(1); }
42 break;
43 case MODS_DOWN:
44 MACRO_READ();
45 debug("MODS_DOWN("); debug_hex(macro); debug(")\n");
46 add_mods(macro);
47 break;
48 case MODS_UP:
49 MACRO_READ();
50 debug("MODS_UP("); debug_hex(macro); debug(")\n");
51 del_mods(macro);
52 break;
53 case 0x04 ... 0x73:
54 debug("DOWN("); debug_hex(macro); debug(")\n");
55 register_code(macro);
56 break;
57 case 0x84 ... 0xF3:
58 debug("UP("); debug_hex(macro); debug(")\n");
59 unregister_code(macro&0x7F);
60 break;
61 case END:
62 default:
63 return;
64 }
65 // interval
66 { uint8_t ms = interval; while (ms--) _delay_ms(1); }
67 }
68 }
69 #endif
Imprint / Impressum