]> git.donarmstrong.com Git - tmk_firmware.git/blob - common/action_macro.c
Merge pull request #36 from Wraul/fix_sleep_led
[tmk_firmware.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 INTERVAL:
40                 interval = MACRO_READ();
41                 debug("INTERVAL("); debug_dec(interval); debug(")\n");
42                 break;
43             case WAIT:
44                 MACRO_READ();
45                 debug("WAIT("); debug_dec(macro); debug(")\n");
46                 { uint8_t ms = macro; while (ms--) _delay_ms(1); }
47                 break;
48             case MODS_DOWN:
49                 MACRO_READ();
50                 debug("MODS_DOWN("); debug_hex(macro); debug(")\n");
51                 add_mods(macro);
52                 break;
53             case MODS_UP:
54                 MACRO_READ();
55                 debug("MODS_UP("); debug_hex(macro); debug(")\n");
56                 del_mods(macro);
57                 break;
58             case 0x04 ... 0x73:
59                 debug("DOWN("); debug_hex(macro); debug(")\n");
60                 register_code(macro);
61                 break;
62             case 0x84 ... 0xF3:
63                 debug("UP("); debug_hex(macro); debug(")\n");
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