forked from panStamp/swap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
swap.h
executable file
·245 lines (212 loc) · 4.72 KB
/
swap.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
/**
* Copyright (c) 2014 panStamp <[email protected]>
*
* This file is part of the panStamp project.
*
* panStamp is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* any later version.
*
* panStamp 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 Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with panStamp; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*
* Author: Daniel Berenguer
* Creation date: 07/10/2014
*/
#ifndef _SWAP_H
#define _SWAP_H
#include "register.h"
#include "config.h"
#include "repeater.h"
#ifdef PANSTAMP_NRG
#include "cc430aes.h"
#endif
/**
* Macros
*/
#define eepromToFactoryDefaults() swap.nvolatToFactoryDefaults()
#define enableAntiPlayback() security |= 0x01
#define swapNetworkId radio.syncWord
#define setSwapStatusCallBack(ptrFunc) statusReceived = ptrFunc
/**
* System states
*/
enum SYSTATE
{
SYSTATE_RESTART = 0,
SYSTATE_RXON,
SYSTATE_RXOFF,
SYSTATE_SYNC,
SYSTATE_LOWBAT,
SYSTATE_UPGRADE
};
/**
* Types of SWAP message for attachInterrupt
*/
#define STATUS 0
#define QUERY 1
#define COMMAND 2
/**
* Array of registers
*/
extern REGISTER* regTable[];
extern uint8_t regTableSize;
/**
* Class: SWAP
*
* Description:
* SWAP protocol class
*/
class SWAP
{
public:
/**
* Pointer to repeater object
*/
REPEATER *repeater;
/**
* SWAP address
*/
#ifdef SWAP_EXTENDED_ADDRESS
uint16_t devAddress;
#else
uint8_t devAddress;
#endif
/**
* Security options
*/
uint8_t security;
/**
* Security cyclic nonce
*/
uint8_t nonce;
/**
* System state
*/
uint8_t systemState;
/**
* Interval between periodic transmissions. 0 for asynchronous transmissions
*/
uint16_t txInterval;
/**
* Smart encryption password
*/
uint8_t *encryptPwd;
/**
* SWAP status packet received. Callback function
*/
void (*statusReceived)(SWPACKET *status);
/**
* enableRepeater
*
* Enable repeater mode
*
* @param maxHop Maximum repeater count. Zero if omitted
*/
void enableRepeater(uint8_t maxHop=0);
/**
* SWAP
*
* Class constructor
*/
SWAP(void);
/**
* init
*
* Initialize SWAP registers
*/
void init(void);
/**
* enterSystemState
*
* Enter system state
*
* @param state New system state
*/
void __inline__ enterSystemState(SYSTATE state)
{
// System state register -> id = 3
regTable[3]->setData((uint8_t *) &state);
}
/**
* goToSleep
*
* put the MCU in sleep mode during txInterval seconds
*/
void goToSleep(void);
/**
* nvolatToFactoryDefaults
*
* Write default config values in non-volatile memory
*/
void nvolatToFactoryDefaults(void);
/**
* attachInterrupt
*
* Declare custom ISR, to be called whenever a SWAP status packet is received
*
* @param type of packet that triggers the user function
* @param funct pointer to the custom function
*/
inline void attachInterrupt(uint8_t type, void (*funct)(SWPACKET*))
{
if (type == STATUS)
statusReceived = funct;
}
/**
* getRegister
*
* Return pointer to register with ID = regId
*
* @param regId Register ID
*/
inline REGISTER * getRegister(unsigned char regId)
{
if (regId < regTableSize)
return regTable[regId];
return NULL;
}
/**
* setSmartPassword
*
* Set Smart Encryption password
*
* @param password Encryption password. 12-byte length
*/
inline void setSmartPassword(unsigned char* password)
{
// Save password
encryptPwd = password;
// Enable Smart Encryption
security |= 0x02;
}
/**
* setAesPassword
*
* Set AES-128 Encryption password
*
* @param password Encryption password. It must be 16 byte length
*/
#ifdef PANSTAMP_NRG
inline void setAesPassword(unsigned char* password)
{
// Set AES-128 key
CC430AES::setKey(password);
// Enable AES Encryption
security |= 0x04;
}
#endif
};
/**
* Global SWAP object
*/
extern SWAP swap;
#endif