forked from OpenSprinkler/OpenSprinkler-Firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
defines.h
executable file
·460 lines (388 loc) · 18 KB
/
defines.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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
/* OpenSprinkler Unified (AVR/RPI/BBB/LINUX) Firmware
* Copyright (C) 2015 by Ray Wang ([email protected])
*
* OpenSprinkler macro defines and hardware pin assignments
* Feb 2015 @ OpenSprinkler.com
*
* This file is part of the OpenSprinkler library
*
* This program 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.
*
* This program 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 this program. If not, see
* <http://www.gnu.org/licenses/>.
*/
#ifndef _DEFINES_H
#define _DEFINES_H
#if !defined(ARDUINO) || defined(__AVR_ATmega1284P__) || defined(__AVR_ATmega1284__)
#define TMP_BUFFER_SIZE 255 // scratch buffer size
#else
#define TMP_BUFFER_SIZE 128 // scratch buffer size
#endif
/** Firmware version, hardware version, and maximal values */
#define OS_FW_VERSION 217 // Firmware version: 217 means 2.1.7
// if this number is different from the one stored in non-volatile memory
// a device reset will be automatically triggered
#define OS_FW_MINOR 0 // Firmware minor version
/** Hardware version base numbers */
#define OS_HW_VERSION_BASE 0x00
#define OSPI_HW_VERSION_BASE 0x40
#define OSBO_HW_VERSION_BASE 0x80
#define SIM_HW_VERSION_BASE 0xC0
/** Hardware type macro defines */
#define HW_TYPE_AC 0xAC // standard 24VAC for 24VAC solenoids only, with triacs
#define HW_TYPE_DC 0xDC // DC powered, for both DC and 24VAC solenoids, with boost converter and MOSFETs
#define HW_TYPE_LATCH 0x1A // DC powered, for DC latching solenoids only, with boost converter and H-bridges
#define HW_TYPE_UNIV 0x15 // DC powered, universal driver
/** File names */
#define WEATHER_OPTS_FILENAME "wtopts.txt" // weather options file
#define STATION_ATTR_FILENAME "stns.dat" // station attributes data file
#define STATION_SPECIAL_DATA_SIZE (TMP_BUFFER_SIZE - 8)
#define IFTTT_KEY_FILENAME "ifkey.txt"
#define IFTTT_KEY_MAXSIZE 128
#define FLOWCOUNT_RT_WINDOW 30 // flow count window (for computing real-time flow rate), 30 seconds
/** Station type macro defines */
#define STN_TYPE_STANDARD 0x00
#define STN_TYPE_RF 0x01
#define STN_TYPE_REMOTE 0x02
#define STN_TYPE_GPIO 0x03 // Support for raw connection of station to GPIO pin
#define STN_TYPE_HTTP 0x04 // Support for HTTP Get connection
#define STN_TYPE_OTHER 0xFF
#define IFTTT_PROGRAM_SCHED 0x01
#define IFTTT_RAINSENSOR 0x02
#define IFTTT_FLOWSENSOR 0x04
#define IFTTT_WEATHER_UPDATE 0x08
#define IFTTT_REBOOT 0x10
#define IFTTT_STATION_RUN 0x20
/** Sensor type macro defines */
#define SENSOR_TYPE_NONE 0x00
#define SENSOR_TYPE_RAIN 0x01 // rain sensor
#define SENSOR_TYPE_FLOW 0x02 // flow sensor
#define SENSOR_TYPE_PSWITCH 0xF0 // program switch
#define SENSOR_TYPE_OTHER 0xFF
/** Non-volatile memory (NVM) defines */
#if defined(ARDUINO)
/** 2KB NVM (ATmega644) data structure:
* | | | ---STRING PARAMETERS--- | | ----STATION ATTRIBUTES----- | |
* | PROGRAM | CON | PWD | LOC | JURL | WURL | KEY | STN_NAMES | MAS | IGR | MAS2 | DIS | SEQ | SPE | OPTIONS |
* | (986) |(12) |(36) |(48) | (40) | (40) |(24) | (768) | (6) | (6) | (6) | (6) | (6) | (6) | (58) |
* | | | | | | | | | | | | | | | |
* 0 986 998 1034 1082 1122 1162 1186 1954 1960 1966 1972 1978 1984 1990 2048
*/
/** 4KB NVM (ATmega1284) data structure:
* | | | ---STRING PARAMETERS--- | | ----STATION ATTRIBUTES----- | |
* | PROGRAM | CON | PWD | LOC | JURL | WURL | KEY | STN_NAMES | MAS | IGR | MAS2 | DIS | SEQ | SPE | OPTIONS |
* | (2433) |(12) |(36) |(48) | (48) | (48) |(24) | (1344) | (7) | (7) | (7) | (7) | (7) | (7) | (61) |
* | | | | | | | | | | | | | | | |
* 0 2433 2445 2481 2529 2577 2625 2649 3993 4000 4007 4014 4021 4028 4035 4096
*/
#if defined(__AVR_ATmega1284P__) || defined(__AVR_ATmega1284__) // for 4KB NVM
#define MAX_EXT_BOARDS 6 // maximum number of exp. boards (each expands 8 stations)
#define MAX_NUM_STATIONS ((1+MAX_EXT_BOARDS)*8) // maximum number of stations
#define NVM_SIZE 4096 // For AVR, nvm data is stored in EEPROM, ATmega1284 has 4K EEPROM
#define STATION_NAME_SIZE 24 // maximum number of characters in each station name
#define MAX_PROGRAMDATA 2433 // program data
#define MAX_NVCONDATA 12 // non-volatile controller data
#define MAX_USER_PASSWORD 36 // user password
#define MAX_LOCATION 48 // location string
#define MAX_JAVASCRIPTURL 48 // javascript url
#define MAX_WEATHERURL 48 // weather script url
#define MAX_WEATHER_KEY 24 // weather api key
#else
#define MAX_EXT_BOARDS 5 // maximum number of exp. boards (each expands 8 stations)
#define MAX_NUM_STATIONS ((1+MAX_EXT_BOARDS)*8) // maximum number of stations
#define NVM_SIZE 2048 // For AVR, nvm data is stored in EEPROM, ATmega644 has 2K EEPROM
#define STATION_NAME_SIZE 16 // maximum number of characters in each station name
#define MAX_PROGRAMDATA 986 // program data
#define MAX_NVCONDATA 12 // non-volatile controller data
#define MAX_USER_PASSWORD 36 // user password
#define MAX_LOCATION 48 // location string
#define MAX_JAVASCRIPTURL 40 // javascript url
#define MAX_WEATHERURL 40 // weather script url
#define MAX_WEATHER_KEY 24 // weather api key,
#endif
#else // NVM defines for RPI/BBB/LINUX
// These are kept the same as AVR for compatibility reasons
// But they can be increased if needed
#define NVM_FILENAME "nvm.dat" // for RPI/BBB, nvm data is stored in a file
#define MAX_EXT_BOARDS 6 // maximum number of exp. boards (each expands 8 stations)
#define MAX_NUM_STATIONS ((1+MAX_EXT_BOARDS)*8) // maximum number of stations
#define NVM_SIZE 4096
#define STATION_NAME_SIZE 24 // maximum number of characters in each station name
#define MAX_PROGRAMDATA 2433 // program data
#define MAX_NVCONDATA 12 // non-volatile controller data
#define MAX_USER_PASSWORD 36 // user password
#define MAX_LOCATION 48 // location string
#define MAX_JAVASCRIPTURL 48 // javascript url
#define MAX_WEATHERURL 48 // weather script url
#define MAX_WEATHER_KEY 24 // weather api key
#endif // end of NVM defines
/** NVM data addresses */
#define ADDR_NVM_PROGRAMS (0) // program starting address
#define ADDR_NVM_NVCONDATA (ADDR_NVM_PROGRAMS+MAX_PROGRAMDATA)
#define ADDR_NVM_PASSWORD (ADDR_NVM_NVCONDATA+MAX_NVCONDATA)
#define ADDR_NVM_LOCATION (ADDR_NVM_PASSWORD+MAX_USER_PASSWORD)
#define ADDR_NVM_JAVASCRIPTURL (ADDR_NVM_LOCATION+MAX_LOCATION)
#define ADDR_NVM_WEATHERURL (ADDR_NVM_JAVASCRIPTURL+MAX_JAVASCRIPTURL)
#define ADDR_NVM_WEATHER_KEY (ADDR_NVM_WEATHERURL+MAX_WEATHERURL)
#define ADDR_NVM_STN_NAMES (ADDR_NVM_WEATHER_KEY+MAX_WEATHER_KEY)
#define ADDR_NVM_MAS_OP (ADDR_NVM_STN_NAMES+MAX_NUM_STATIONS*STATION_NAME_SIZE) // master op bits
#define ADDR_NVM_IGNRAIN (ADDR_NVM_MAS_OP+(MAX_EXT_BOARDS+1)) // ignore rain bits
#define ADDR_NVM_MAS_OP_2 (ADDR_NVM_IGNRAIN+(MAX_EXT_BOARDS+1)) // master2 op bits
#define ADDR_NVM_STNDISABLE (ADDR_NVM_MAS_OP_2+(MAX_EXT_BOARDS+1))// station disable bits
#define ADDR_NVM_STNSEQ (ADDR_NVM_STNDISABLE+(MAX_EXT_BOARDS+1))// station sequential bits
#define ADDR_NVM_STNSPE (ADDR_NVM_STNSEQ+(MAX_EXT_BOARDS+1)) // station special bits (i.e. non-standard stations)
#define ADDR_NVM_OPTIONS (ADDR_NVM_STNSPE+(MAX_EXT_BOARDS+1)) // options
/** Default password, location string, weather key, script urls */
#define DEFAULT_PASSWORD "a6d82bced638de3def1e9bbb4983225c" // md5 of 'opendoor'
#define DEFAULT_LOCATION "Boston,MA"
#define DEFAULT_WEATHER_KEY ""
#define DEFAULT_JAVASCRIPT_URL "https://ui.opensprinkler.com/js"
#define DEFAULT_WEATHER_URL "weather.opensprinkler.com"
#define DEFAULT_IFTTT_URL "maker.ifttt.com"
/** Macro define of each option
* Refer to OpenSprinkler.cpp for details on each option
*/
typedef enum {
OPTION_FW_VERSION = 0,
OPTION_TIMEZONE,
OPTION_USE_NTP,
OPTION_USE_DHCP,
OPTION_STATIC_IP1,
OPTION_STATIC_IP2,
OPTION_STATIC_IP3,
OPTION_STATIC_IP4,
OPTION_GATEWAY_IP1,
OPTION_GATEWAY_IP2,
OPTION_GATEWAY_IP3,
OPTION_GATEWAY_IP4,
OPTION_HTTPPORT_0,
OPTION_HTTPPORT_1,
OPTION_HW_VERSION,
OPTION_EXT_BOARDS,
OPTION_SEQUENTIAL_RETIRED,
OPTION_STATION_DELAY_TIME,
OPTION_MASTER_STATION,
OPTION_MASTER_ON_ADJ,
OPTION_MASTER_OFF_ADJ,
OPTION_SENSOR_TYPE,
OPTION_RAINSENSOR_TYPE,
OPTION_WATER_PERCENTAGE,
OPTION_DEVICE_ENABLE,
OPTION_IGNORE_PASSWORD,
OPTION_DEVICE_ID,
OPTION_LCD_CONTRAST,
OPTION_LCD_BACKLIGHT,
OPTION_LCD_DIMMING,
OPTION_BOOST_TIME,
OPTION_USE_WEATHER,
OPTION_NTP_IP1,
OPTION_NTP_IP2,
OPTION_NTP_IP3,
OPTION_NTP_IP4,
OPTION_ENABLE_LOGGING,
OPTION_MASTER_STATION_2,
OPTION_MASTER_ON_ADJ_2,
OPTION_MASTER_OFF_ADJ_2,
OPTION_FW_MINOR,
OPTION_PULSE_RATE_0,
OPTION_PULSE_RATE_1,
OPTION_REMOTE_EXT_MODE,
OPTION_DNS_IP1,
OPTION_DNS_IP2,
OPTION_DNS_IP3,
OPTION_DNS_IP4,
OPTION_SPE_AUTO_REFRESH,
OPTION_IFTTT_ENABLE,
OPTION_RESET,
NUM_OPTIONS // total number of options
} OS_OPTION_t;
/** Log Data Type */
#define LOGDATA_STATION 0x00
#define LOGDATA_RAINSENSE 0x01
#define LOGDATA_RAINDELAY 0x02
#define LOGDATA_WATERLEVEL 0x03
#define LOGDATA_FLOWSENSE 0x04
#undef OS_HW_VERSION
/** Hardware defines */
#if defined(ARDUINO)
#if F_CPU==8000000L
#define OS_HW_VERSION (OS_HW_VERSION_BASE+20)
#elif F_CPU==12000000L
#define OS_HW_VERSION (OS_HW_VERSION_BASE+21)
#elif F_CPU==16000000L
#if defined(__AVR_ATmega1284P__) || defined(__AVR_ATmega1284__)
#define OS_HW_VERSION (OS_HW_VERSION_BASE+23)
#define PIN_FREE_LIST {2,10,12,13,14,15,18,19}
#else
#define OS_HW_VERSION (OS_HW_VERSION_BASE+22)
#endif
#endif
// hardware pins
#define PIN_BUTTON_1 31 // button 1
#define PIN_BUTTON_2 30 // button 2
#define PIN_BUTTON_3 29 // button 3
#define PIN_RF_DATA 28 // RF data pin
#define PORT_RF PORTA
#define PINX_RF PINA3
#define PIN_SR_LATCH 3 // shift register latch pin
#define PIN_SR_DATA 21 // shift register data pin
#define PIN_SR_CLOCK 22 // shift register clock pin
#define PIN_SR_OE 1 // shift register output enable pin
// regular 16x2 LCD pin defines
#define PIN_LCD_RS 19 // LCD rs pin
#define PIN_LCD_EN 18 // LCD enable pin
#define PIN_LCD_D4 20 // LCD d4 pin
#define PIN_LCD_D5 21 // LCD d5 pin
#define PIN_LCD_D6 22 // LCD d6 pin
#define PIN_LCD_D7 23 // LCD d7 pin
#define PIN_LCD_BACKLIGHT 12 // LCD backlight pin
#define PIN_LCD_CONTRAST 13 // LCD contrast pin
// DC controller pin defines
#define PIN_BOOST 20 // booster pin
#define PIN_BOOST_EN 23 // boost voltage enable pin
#define PIN_ETHER_CS 4 // Ethernet controller chip select pin
#define PIN_SD_CS 0 // SD card chip select pin
#define PIN_RAINSENSOR 11 // rain sensor is connected to pin D3
#define PIN_FLOWSENSOR 11 // flow sensor (currently shared with rain sensor, change if using a different pin)
#define PIN_FLOWSENSOR_INT 1 // flow sensor interrupt pin (INT1)
#define PIN_EXP_SENSE 4 // expansion board sensing pin (A4)
#define PIN_CURR_SENSE 7 // current sensing pin (A7)
#define PIN_CURR_DIGITAL 24 // digital pin index for A7
// Ethernet buffer size
#if defined(__AVR_ATmega1284P__) || defined(__AVR_ATmega1284__)
#define ETHER_BUFFER_SIZE 1400 // ATmega1284 has 16K RAM, so use a bigger buffer
#else
#define ETHER_BUFFER_SIZE 950 // ATmega644 has 4K RAM, so use a smaller buffer
#endif
#define wdt_reset() __asm__ __volatile__ ("wdr") // watchdog timer reset
//#define SERIAL_DEBUG
#if defined(SERIAL_DEBUG) /** Serial debug functions */
#define DEBUG_BEGIN(x) Serial.begin(x)
#define DEBUG_PRINT(x) Serial.print(x)
#define DEBUG_PRINTLN(x) Serial.println(x)
#define DEBUG_PRINTIP(x) ether.printIp("IP:",x)
#else
#define DEBUG_BEGIN(x) {}
#define DEBUG_PRINT(x) {}
#define DEBUG_PRINTLN(x) {}
#define DEBUG_PRINTIP(x) {}
#endif
typedef unsigned char uint8_t;
typedef unsigned int uint16_t;
typedef int int16_t;
#else // Hardware defines for RPI/BBB/CHIP
/** OSPi pin defines */
#if defined(OSPI)
#define OS_HW_VERSION OSPI_HW_VERSION_BASE
#define PIN_SR_LATCH 22 // shift register latch pin
#define PIN_SR_DATA 27 // shift register data pin
#define PIN_SR_DATA_ALT 21 // shift register data pin (alternative, for RPi 1 rev. 1 boards)
#define PIN_SR_CLOCK 4 // shift register clock pin
#define PIN_SR_OE 17 // shift register output enable pin
#define PIN_RAINSENSOR 14 // rain sensor
#define PIN_FLOWSENSOR 14 // flow sensor (currently shared with rain sensor, change if using a different pin)
#define PIN_RF_DATA 15 // RF transmitter pin
#define PIN_BUTTON_1 23 // button 1
#define PIN_BUTTON_2 24 // button 2
#define PIN_BUTTON_3 25 // button 3
#define PIN_FREE_LIST {5,6,7,8,9,10,11,12,13,16,18,19,20,21,23,24,25,26}
/** NextThing.co CHIP Pro pin defines */
#elif defined(CHIP)
#define OS_HW_VERSION 0x01 // Hardware revision, displayed in UI
#define PIN_SR_LATCH 131 // shift register latch pin
#define PIN_SR_DATA 132 // shift register data pin
#define PIN_SR_CLOCK 133 // shift register clock pin
#define PIN_SR_OE 134 // shift register output enable pin
#define PIN_RAINSENSOR 37 // rain sensor pin
#define PIN_FLOWSENSOR 0 // flow sensor pin
#define PIN_RF_DATA 0 // RF transmitter pin
#define PIN_BUTTON_1 128 // button 1
#define PIN_BUTTON_2 129 // button 2
#define PIN_BUTTON_3 130 // button 3
#define PIN_FREE_LIST {131,132,133,134,135,136,137,138,139}
/** BBB pin defines */
#elif defined(OSBO)
#define OS_HW_VERSION OSBO_HW_VERSION_BASE
// these are gpio pin numbers, refer to
// https://github.com/mkaczanowski/BeagleBoneBlack-GPIO/blob/master/GPIO/GPIOConst.cpp
#define PIN_SR_LATCH 60 // P9_12, shift register latch pin
#define PIN_SR_DATA 30 // P9_11, shift register data pin
#define PIN_SR_CLOCK 31 // P9_13, shift register clock pin
#define PIN_SR_OE 50 // P9_14, shift register output enable pin
#define PIN_RAINSENSOR 48 // P9_15, rain sensor is connected to pin D3
#define PIN_FLOWSENSOR 48 // flow sensor (currently shared with rain sensor, change if using a different pin)
#define PIN_RF_DATA 51 // RF transmitter pin
#else
// For Linux or other software simulators
// use fake hardware pins
#if defined(DEMO)
#define OS_HW_VERSION 255 // assign hardware number 255 to DEMO firmware
#else
#define OS_HW_VERSION SIM_HW_VERSION_BASE
#endif
#define PIN_SR_LATCH 0
#define PIN_SR_DATA 0
#define PIN_SR_CLOCK 0
#define PIN_SR_OE 0
#define PIN_RAINSENSOR 0
#define PIN_FLOWSENSOR 0
#define PIN_RF_DATA 0
#define PIN_FREE_LIST {}
#endif
#define ETHER_BUFFER_SIZE 16384
#define DEBUG_BEGIN(x) {} /** Serial debug functions */
#define ENABLE_DEBUG
#if defined(ENABLE_DEBUG)
inline void DEBUG_PRINT(int x) {printf("%d", x);}
inline void DEBUG_PRINT(const char*s) {printf("%s", s);}
#define DEBUG_PRINTLN(x) {DEBUG_PRINT(x);printf("\n");}
#else
#define DEBUG_PRINT(x) {}
#define DEBUG_PRINTLN(x) {}
#endif
inline void itoa(int v,char *s,int b) {sprintf(s,"%d",v);}
inline void ultoa(unsigned long v,char *s,int b) {sprintf(s,"%lu",v);}
#define now() time(0)
/** Re-define avr-specific (e.g. PGM) types to use standard types */
#define pgm_read_byte(x) *(x)
#define PSTR(x) x
#define strcat_P strcat
#define strcpy_P strcpy
#define PROGMEM
typedef const char* PGM_P;
typedef unsigned char uint8_t;
typedef short int16_t;
typedef unsigned short uint16_t;
typedef bool boolean;
#endif // end of Hardawre defines
/** Other defines */
// button values
#define BUTTON_1 0x01
#define BUTTON_2 0x02
#define BUTTON_3 0x04
// button status values
#define BUTTON_NONE 0x00 // no button pressed
#define BUTTON_MASK 0x0F // button status mask
#define BUTTON_FLAG_HOLD 0x80 // long hold flag
#define BUTTON_FLAG_DOWN 0x40 // down flag
#define BUTTON_FLAG_UP 0x20 // up flag
// button timing values
#define BUTTON_DELAY_MS 1 // short delay (milliseconds)
#define BUTTON_HOLD_MS 1000 // long hold expiration time (milliseconds)
// button mode values
#define BUTTON_WAIT_NONE 0 // do not wait, return value immediately
#define BUTTON_WAIT_RELEASE 1 // wait until button is release
#define BUTTON_WAIT_HOLD 2 // wait until button hold time expires
#define DISPLAY_MSG_MS 2000 // message display time (milliseconds)
typedef unsigned char byte;
typedef unsigned long ulong;
#endif // _DEFINES_H