]>
Commit | Line | Data |
---|---|---|
1 | /* vim:ts=4 sts=4 et tw=80 | |
2 | * | |
3 | * fnordlicht firmware | |
4 | * | |
5 | * for additional information please | |
6 | * see http://lochraster.org/fnordlichtmini | |
7 | * | |
8 | * (c) by Alexander Neumann <alexander@bumpern.de> | |
9 | * | |
10 | * This program is free software: you can redistribute it and/or modify it | |
11 | * under the terms of the GNU General Public License version 3 as published by | |
12 | * the Free Software Foundation. | |
13 | * | |
14 | * This program is distributed in the hope that it will be useful, but WITHOUT | |
15 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
16 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | |
17 | * more details. | |
18 | * | |
19 | * You should have received a copy of the GNU General Public License along with | |
20 | * this program. If not, see <http://www.gnu.org/licenses/>. | |
21 | */ | |
22 | ||
23 | #ifndef __REMOTE_PROTO | |
24 | #define __REMOTE_PROTO 1 | |
25 | ||
26 | #include "../common/remote-proto.h" | |
27 | ||
28 | struct remote_msg_start_program_t | |
29 | { | |
30 | uint8_t address; | |
31 | uint8_t cmd; | |
32 | uint8_t script; | |
33 | uint8_t params[REMOTE_STARTUP_MAX_PARAMSIZE]; | |
34 | }; | |
35 | ||
36 | #endif |