]> git.gir.st - tmk_keyboard.git/blob - common/action_macro.c
cc7ac18a099215defdf2772dfea49a37fef263c0
[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 "action.h"
19 #include "action_macro.h"
20
21 #ifdef DEBUG_ACTION
22 #include "debug.h"
23 #else
24 #include "nodebug.h"
25 #endif
26
27
28 #ifndef NO_ACTION_MACRO
29
30 #define MACRO_READ() (macro = pgm_read_byte(macro_p++))
31 void action_macro_play(const macro_t *macro_p)
32 {
33 macro_t macro = END;
34 uint8_t interval = 0;
35
36 if (!macro_p) return;
37 while (true) {
38 switch (MACRO_READ()) {
39 case KEY_DOWN:
40 MACRO_READ();
41 dprintf("KEY_DOWN(%02X)\n", macro);
42 register_code(macro);
43 break;
44 case KEY_UP:
45 MACRO_READ();
46 dprintf("KEY_UP(%02X)\n", macro);
47 unregister_code(macro);
48 break;
49 case WAIT:
50 MACRO_READ();
51 dprintf("WAIT(%u)\n", macro);
52 { uint8_t ms = macro; while (ms--) _delay_ms(1); }
53 break;
54 case INTERVAL:
55 interval = MACRO_READ();
56 dprintf("INTERVAL(%u)\n", interval);
57 break;
58 case 0x04 ... 0x73:
59 dprintf("DOWN(%02X)\n", macro);
60 register_code(macro);
61 break;
62 case 0x84 ... 0xF3:
63 dprintf("UP(%02X)\n", macro);
64 unregister_code(macro&0x7F);
65 break;
66 case END:
67 default:
68 return;
69 }
70 // interval
71 { uint8_t ms = interval; while (ms--) _delay_ms(1); }
72 }
73 }
74 #endif
Imprint / Impressum