2 Copyright 2013 Jun Wako <wakojun@gmail.com>
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.
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.
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/>.
18 #include "action_util.h"
19 #include "action_macro.h"
29 #ifndef NO_ACTION_MACRO
31 #define MACRO_READ() (macro = MACRO_GET(macro_p++))
32 void action_macro_play(const macro_t *macro_p)
37 uint8_t mod_storage = 0;
41 switch (MACRO_READ()) {
44 dprintf("KEY_DOWN(%02X)\n", macro);
46 add_weak_mods(MOD_BIT(macro));
47 send_keyboard_report();
54 dprintf("KEY_UP(%02X)\n", macro);
56 del_weak_mods(MOD_BIT(macro));
57 send_keyboard_report();
59 unregister_code(macro);
64 dprintf("WAIT(%u)\n", macro);
65 { uint8_t ms = macro; while (ms--) wait_ms(1); }
68 interval = MACRO_READ();
69 dprintf("INTERVAL(%u)\n", interval);
72 mod_storage = get_mods();
75 set_mods(mod_storage);
76 send_keyboard_report();
80 send_keyboard_report();
83 dprintf("DOWN(%02X)\n", macro);
87 dprintf("UP(%02X)\n", macro);
88 unregister_code(macro&0x7F);
95 { uint8_t ms = interval; while (ms--) wait_ms(1); }