-
Notifications
You must be signed in to change notification settings - Fork 0
/
protocol.h
38 lines (34 loc) · 1.43 KB
/
protocol.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
* Copyright 2017 Tom Wimmenhove<[email protected]>
*
* This file is part of Subarufobrob
*
* Subarufobrob is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Subarufobrob is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Subarufobrob. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef PROTOCOL_H
#define PROTOCOL_H
unsigned char getCSum(unsigned char *packet);
void setCSum(unsigned char *packet, unsigned char csum);
unsigned char calcCSum(unsigned char *packet); /* Thanks to pmsac at toxyn dot org for figuring out the checksum algorithm! */
int isValidPacket(unsigned char *packet);
unsigned char getCommand(unsigned char *packet);
char* commandName(unsigned char command);
void setCommand(unsigned char *packet, unsigned char command);
unsigned int getCode(unsigned char *packet);
void setCode(unsigned char *packet, unsigned int code);
#define COMMAND_LOCK 0x1
#define COMMAND_UNLOCK 0x2
#define COMMAND_TRUNK 0xb
#define COMMAND_PANIC 0xa
#endif // PROTOCOL_H