diff options
author | root <root@krebs> | 2011-08-23 23:17:49 +0200 |
---|---|---|
committer | root <root@krebs> | 2011-08-23 23:17:49 +0200 |
commit | dec3e2b5576d9283ac14e6e19ad7a7c9b2f41dbc (patch) | |
tree | 01ce9ce670b9e8e58738e995cf4b4eb88745ac19 /claws/communication.h | |
parent | b84af6c3d35794f4836d08b47ed7b46ba83ceb02 (diff) |
claws: initial commit
claws is the tool to control the relais on the usb board by momo
Diffstat (limited to 'claws/communication.h')
-rw-r--r-- | claws/communication.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/claws/communication.h b/claws/communication.h new file mode 100644 index 00000000..db4b2c36 --- /dev/null +++ b/claws/communication.h @@ -0,0 +1,25 @@ +/* These are the command codes of the relay card. If you change something here you must + * recompile the firmware and the control tool. */ +#ifndef _COMMUNICATION_H +#define _COMMUNICATION_H + +#define COMMAND_RELAY_ON 0x01 +#define COMMAND_RELAY_OFF 0x02 +#define COMMAND_RELAY_TOGGLE 0x04 +#define COMMAND_RELAY_SET 0x08 +#define COMMAND_RELAY_TIME_ON 0x10 +#define COMMAND_RELAY_TIME_OFF 0x20 +#define COMMAND_RELAY_TIME_CYCLIC 0x40 +#define COMMAND_GET_STATUS 0x80 +#define COMMAND_DEL_TIMERS 0x81 +#define COMMAND_SETUP_REMOTE 0x82 + + +#define RESPONSE_OK 0xff +#define RESPONSE_INVALID_COMMAND 0xfe +#define RESPONSE_INVALID_ARGUMENT 0xfd +#define RESPONSE_TRANSMISSION_ERROR 0xfc + +#define COMMANDO_LENGTH 4 + +#endif |