-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStephenWritesLightSwitch.cpp
More file actions
232 lines (195 loc) · 6.95 KB
/
StephenWritesLightSwitch.cpp
File metadata and controls
232 lines (195 loc) · 6.95 KB
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
/*-----------------------------------------------------------------datalogger.cpp
*
* This is a functional prototype of a datalogger.
* the logger takes info from a monitored device (device) over serial and commands
* from a program or a user through a usb console. These commands are formatted
* in a mannor described in Monitor.cpp and Monitor.h
*
* Copyright (c) 2012, Donald Delmar Davis, Suspect Devices
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the Suspect Devices nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*-----------------------------------------------------------------------------*/
#ifndef uint8_t
#define uint8_t uint8
#define uint16_t uint16
//#define uint32_t uint32
#endif
#define ASCII_DELETE '\177'
#define ASCII_BACKSPACE '\010'
/*---------------------------------------------------------------------TUNABLES
*
*----------------------------------------------------------------------------*/
// should move this to common.h or something silly
#define BLU_LED 19
#define YEL_LED 18
#define GRN_LED 14
#define LED_ON LOW
#define LED_OFF HIGH
/**
* \file setup.cpp
*/
#include <stdio.h>
#include <io.h>
#include <signal.h>
#include <stdint.h>
#include <SdFat.h>
#include <HardwareSPI.h>
#include <wirish/wirish.h>
#include <libmaple/timer.h>
#include <libmaple/usart.h>
//extern "C" {
#include "Monitor.h"
#include "Utilities.h"
//}
/* Global Variables */
/*-------------------------------------------------------------GLOBAL VARIABLES
*
*----------------------------------------------------------------------------*/
HardwareSPI spi(1);
//Sd2Card card(&spi);
//Sd2Card card;HardwareSPI spi(1);
Sd2Card card(spi, USE_NSS_PIN);
SdVolume volume;
SdFile root;
SdFile file;
SdFile settingsFile;
SdFile sysinfoFile;
char logFileName[16];
char settingsFileName[16]="BOM5K.SET";
char sysinfoFileName[16]="AMAV2.DAT";
bool connectedToNet=false;
bool logOpened=false;
time_t epoch=0;
#define MAX_SSN_LENGTH 16
#define MAX_HWV_LENGTH 8
#define MAX_SWV_LENGTH 24
#define MAX_TIME_LENGTH 24
char deviceSSN[MAX_SSN_LENGTH]="00000000100";
char deviceHWV[MAX_HWV_LENGTH]="0";
char deviceSWV[MAX_SWV_LENGTH]="0.0-000000";
time_t deviceLastContact=0L;
bool deviceIsConnected=false;
int sdCardStatus=0;
const int sensor_pin = 12;
/*---------------------------------------------------------------hardwareSetup()
*
*----------------------------------------------------------------------------*/
void hardwareSetup(void) {
spi.begin(SPI_281_250KHZ, MSBFIRST, 0); // move to sdcard init?
pinMode(YEL_LED, OUTPUT);
pinMode(GRN_LED, OUTPUT);
pinMode(BLU_LED, OUTPUT);
digitalWrite(YEL_LED, HIGH);
digitalWrite(BLU_LED, LOW);
digitalWrite(GRN_LED, HIGH);
SerialUSB.begin();
Serial1.begin(9600);
Serial2.begin(9600);
// probably should initialize the monitor.
sdCardStatus=sdCardInit();
}
/*-----------------------------------------------------------------------Setup()
*
*----------------------------------------------------------------------------*/
void setup( void )
{
hardwareSetup();
// Setup the LED to steady on
pinMode(BOARD_LED_PIN, OUTPUT);
digitalWrite(BOARD_LED_PIN, HIGH);
// Setup the button as input
pinMode(BOARD_BUTTON_PIN, INPUT);
digitalWrite(BOARD_BUTTON_PIN, HIGH);
// Setup the sensor pin as an analog input
pinMode(sensor_pin,INPUT_ANALOG);
registerAction(_DIR_, DIRaction);
timer.pause();
// Set up period
timer.setPeriod(1000000); // in microseconds
// Set up an interrupt on channel 1
timer.setMode(TIMER_CH1,TIMER_OUTPUT_COMPARE);
timer.setCompare(TIMER_CH1, 1); // Interrupt 1 count after each update
timer.attachInterrupt(TIMER_CH1,ledTask);
// Refresh the timer's count, prescale, and overflow
timer.refresh();
// Start the timer counting
timer.resume();
}
/*---------------------------------------------------------------------LedTask()
* stubb
*----------------------------------------------------------------------------*/
static void ledTask()
{
togglePin(BLU_LED);
}
static void serialTasks() {
char ch;
setupKeywords();
while ((consoleComm.gotline==false) && (SerialUSB.available())) {
if ((((ch=SerialUSB.read())!='\r') && (ch!='\n'))
&&(consoleComm.len<MAX_COMMAND_LINE_LENGTH)
) {
consoleComm.line[consoleComm.len++] = ch;
} else {
if (consoleComm.len) {
consoleComm.gotline = true;
}
consoleComm.line[consoleComm.len]='\0';
}
//SerialUSB.write(ch);
}
while ((deviceComm.gotline==false) && (Serial1.available())) {
if ((((ch=Serial1.read())!='\r') && (ch!='\n'))
&&(deviceComm.len<MAX_COMMAND_LINE_LENGTH)
) {
deviceComm.line[deviceComm.len++] = ch;
} else {
if (deviceComm.len) {
deviceComm.gotline = true;
}
deviceComm.line[deviceComm.len]='\0';
}
//SerialUSB.write(ch);
}
}
// Force init to be called *first*, i.e. before static object allocation.
// Otherwise, statically allocated objects that need libmaple may fail.
__attribute__((constructor)) void premain() {
init();
}
int main(void) {
setup();
// should never get past setup.
while (true) {
serialTasks(); //move to
if (consoleComm.gotline) {
handleConsoleInput(&consoleComm);
}
if (deviceComm.gotline) {
handleDeviceInput(&deviceComm);
}
}
return 0;
}