forked from letscontrolit/ESPEasy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSerial.ino
233 lines (197 loc) · 6.58 KB
/
Serial.ino
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
/********************************************************************************************\
* Process data from Serial Interface
\*********************************************************************************************/
#define INPUT_COMMAND_SIZE 80
void ExecuteCommand(const char *Line)
{
char TmpStr1[80];
TmpStr1[0] = 0;
char Command[80];
Command[0] = 0;
int Par1 = 0;
int Par2 = 0;
int Par3 = 0;
GetArgv(Line, Command, 1);
if (GetArgv(Line, TmpStr1, 2)) Par1 = str2int(TmpStr1);
if (GetArgv(Line, TmpStr1, 3)) Par2 = str2int(TmpStr1);
if (GetArgv(Line, TmpStr1, 4)) Par3 = str2int(TmpStr1);
// ****************************************
// commands for debugging
// ****************************************
#if FEATURE_TIME
if (strcasecmp_P(Command, PSTR("ntp")) == 0)
getNtpTime();
#endif
if (strcasecmp_P(Command, PSTR("setsdk")) == 0)
{
WiFi.persistent(true); // use SDK storage of SSID/WPA parameters
WiFi.disconnect();
WiFi.begin(SecuritySettings.WifiSSID, SecuritySettings.WifiKey);
WiFi.persistent(false);
}
if (strcasecmp_P(Command, PSTR("clearsdk")) == 0)
{
WiFi.persistent(true); // use SDK storage of SSID/WPA parameters
WiFi.disconnect();
WiFi.persistent(false);
WiFi.begin(SecuritySettings.WifiSSID, SecuritySettings.WifiKey);
}
if (strcasecmp_P(Command, PSTR("getssid")) == 0)
{
struct station_config conf;
if (wifi_station_get_config(&conf))
{
Serial.print(F("SDK current: "));
Serial.println(String(reinterpret_cast<char*>(conf.ssid)));
}
struct station_config sconf;
if (wifi_station_get_config_default(&sconf))
{
Serial.print(F("SDK default: "));
Serial.println(String(reinterpret_cast<char*>(sconf.ssid)));
}
}
if (strcasecmp_P(Command, PSTR("VariableSet")) == 0)
{
if (GetArgv(Line, TmpStr1, 3))
UserVar[Par1 - 1] = atof(TmpStr1);
}
if (strcasecmp_P(Command, PSTR("build")) == 0)
{
Settings.Build = Par1;
SaveSettings();
}
if (strcasecmp_P(Command, PSTR("NoSleep")) == 0)
{
Settings.deepSleep = 0;
}
// ****************************************
// special commands for old nodo plugin
// ****************************************
if (strcasecmp_P(Command, PSTR("DomoticzSend")) == 0)
{
if (GetArgv(Line, TmpStr1, 4))
{
struct EventStruct TempEvent;
TempEvent.TaskIndex = 0;
TempEvent.BaseVarIndex = (VARS_PER_TASK * TASKS_MAX) - 1;
TempEvent.idx = Par2;
TempEvent.sensorType = Par1;
UserVar[(VARS_PER_TASK * TASKS_MAX) - 1] = atof(TmpStr1);
sendData(&TempEvent);
}
}
// ****************************************
// configure settings commands
// ****************************************
if (strcasecmp_P(Command, PSTR("WifiSSID")) == 0)
strcpy(SecuritySettings.WifiSSID, Line + 9);
if (strcasecmp_P(Command, PSTR("WifiKey")) == 0)
strcpy(SecuritySettings.WifiKey, Line + 8);
if (strcasecmp_P(Command, PSTR("WifiScan")) == 0)
WifiScan();
if (strcasecmp_P(Command, PSTR("WifiConnect")) == 0)
WifiConnect();
if (strcasecmp_P(Command, PSTR("WifiDisconnect")) == 0)
WifiDisconnect();
if (strcasecmp_P(Command, PSTR("Reboot")) == 0)
{
pinMode(0, INPUT);
pinMode(2, INPUT);
pinMode(15, INPUT);
ESP.reset();
}
if (strcasecmp_P(Command, PSTR("Restart")) == 0)
ESP.restart();
if (strcasecmp_P(Command, PSTR("Erase")) == 0)
{
EraseFlash();
saveToRTC(0);
WiFi.persistent(true); // use SDK storage of SSID/WPA parameters
WiFi.disconnect(); // this will store empty ssid/wpa into sdk storage
WiFi.persistent(false); // Do not use SDK storage of SSID/WPA parameters
}
if (strcasecmp_P(Command, PSTR("Reset")) == 0)
ResetFactory();
if (strcasecmp_P(Command, PSTR("Save")) == 0)
SaveSettings();
if (strcasecmp_P(Command, PSTR("Load")) == 0)
LoadSettings();
if (strcasecmp_P(Command, PSTR("FlashDump")) == 0)
{
uint32_t _sectorStart = ((uint32_t)&_SPIFFS_start - 0x40200000) / SPI_FLASH_SEC_SIZE;
uint32_t _sectorEnd = ((uint32_t)&_SPIFFS_end - 0x40200000) / SPI_FLASH_SEC_SIZE;
Serial.print(F("Flash start sector: "));
Serial.println(_sectorStart);
Serial.print(F("Flash end sector : "));
Serial.println(_sectorEnd);
char data[80];
if (Par2 == 0) Par2 = Par1;
for (int x = Par1; x <= Par2; x++)
{
LoadFromFlash(x * 1024, (byte*)&data, sizeof(data));
Serial.print(F("Offset: "));
Serial.print(x);
Serial.print(" : ");
Serial.println(data);
}
}
if (strcasecmp_P(Command, PSTR("Delay")) == 0)
Settings.Delay = Par1;
if (strcasecmp_P(Command, PSTR("Debug")) == 0)
Settings.SerialLogLevel = Par1;
if (strcasecmp_P(Command, PSTR("IP")) == 0)
{
if (GetArgv(Line, TmpStr1, 2))
if (!str2ip(TmpStr1, Settings.IP))
Serial.println("?");
}
if (strcasecmp_P(Command, PSTR("Settings")) == 0)
{
char str[20];
Serial.println();
Serial.println(F("System Info"));
IPAddress ip = WiFi.localIP();
sprintf_P(str, PSTR("%u.%u.%u.%u"), ip[0], ip[1], ip[2], ip[3]);
Serial.print(F(" IP Address : ")); Serial.println(str);
Serial.print(F(" Build : ")); Serial.println((int)BUILD);
Serial.print(F(" Unit : ")); Serial.println((int)Settings.Unit);
Serial.print(F(" WifiSSID : ")); Serial.println(SecuritySettings.WifiSSID);
Serial.print(F(" WifiKey : ")); Serial.println(SecuritySettings.WifiKey);
Serial.print(F(" Free mem : ")); Serial.println(FreeMem());
}
}
/********************************************************************************************\
* Get data from Serial Interface
\*********************************************************************************************/
#define INPUT_BUFFER_SIZE 128
byte SerialInByte;
int SerialInByteCounter = 0;
char InputBuffer_Serial[INPUT_BUFFER_SIZE + 2];
void serial()
{
while (Serial.available())
{
yield();
SerialInByte = Serial.read();
if (SerialInByte == 255) // binary data...
{
Serial.flush();
return;
}
if (isprint(SerialInByte))
{
if (SerialInByteCounter < INPUT_BUFFER_SIZE) // add char to string if it still fits
InputBuffer_Serial[SerialInByteCounter++] = SerialInByte;
}
if (SerialInByte == '\n')
{
InputBuffer_Serial[SerialInByteCounter] = 0; // serial data completed
Serial.write('>');
Serial.println(InputBuffer_Serial);
ExecuteCommand(InputBuffer_Serial);
SerialInByteCounter = 0;
InputBuffer_Serial[0] = 0; // serial data processed, clear buffer
}
}
}