-
-
Notifications
You must be signed in to change notification settings - Fork 347
/
application.cpp
262 lines (223 loc) · 6.85 KB
/
application.cpp
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
#include <SmingCore.h>
#include <Ota/Network/HttpUpgrader.h>
#include <Storage/PartitionStream.h>
#include <Storage/SpiFlash.h>
#include <Ota/Upgrader.h>
#include <Data/Buffer/LineBuffer.h>
// If you want, you can define WiFi settings globally in Eclipse Environment Variables
#ifndef WIFI_SSID
#define WIFI_SSID "PleaseEnterSSID" // Put your SSID and password here
#define WIFI_PWD "PleaseEnterPass"
#endif
namespace
{
std::unique_ptr<Ota::Network::HttpUpgrader> otaUpdater;
Storage::Partition spiffsPartition;
OtaUpgrader ota;
LineBuffer<16> commandBuffer;
Storage::Partition findSpiffsPartition(Storage::Partition appPart)
{
String name = F("spiffs");
name += ota.getSlot(appPart);
auto part = Storage::findPartition(name);
if(!part) {
debug_w("Partition '%s' not found", name.c_str());
}
return part;
}
void upgradeCallback(Ota::Network::HttpUpgrader&, bool result)
{
Serial.println(_F("In callback..."));
if(result == true) {
// success
ota.end();
auto part = ota.getNextBootPartition();
// set to boot new rom and then reboot
Serial << _F("Firmware updated, rebooting to ") << part.name() << _F(" @ ...") << endl;
ota.setBootPartition(part);
System.restart();
} else {
ota.abort();
// fail
Serial.println(_F("Firmware update failed!"));
}
}
void doUpgrade()
{
Serial.println(F("Updating..."));
// need a clean object, otherwise if run before and failed will not run again
otaUpdater = std::make_unique<Ota::Network::HttpUpgrader>();
// select rom slot to flash
auto part = ota.getNextBootPartition();
/*
* Applications should always include a sanity check to ensure partitions being updated are
* not in use. This should always included the application partition but should also consider
* filing system partitions, etc. which may be actively in use.
*/
if(part == ota.getRunningPartition()) {
Serial << F("May be running in temporary mode. Please reboot and try again.") << endl;
return;
}
#ifndef RBOOT_TWO_ROMS
// flash rom to position indicated in the rBoot config rom table
otaUpdater->addItem(ROM_0_URL, part);
#else
// flash appropriate ROM
otaUpdater->addItem((ota.getSlot(part) == 0) ? ROM_0_URL : ROM_1_URL, part);
#endif
ota.begin(part);
auto spiffsPart = findSpiffsPartition(part);
if(spiffsPart) {
// use user supplied values (defaults for 4mb flash in hardware config)
otaUpdater->addItem(SPIFFS_URL, spiffsPart,
new Storage::PartitionStream(spiffsPart, Storage::Mode::BlockErase));
}
// request switch and reboot on success
//otaUpdater->switchToRom(slot);
// and/or set a callback (called on failure or success without switching requested)
otaUpdater->setCallback(upgradeCallback);
// start update
otaUpdater->start();
}
void doSwitch()
{
auto before = ota.getRunningPartition();
auto after = ota.getNextBootPartition();
Serial << _F("Swapping from ") << before.name() << " @ 0x" << String(before.address(), HEX) << " to "
<< after.name() << " @ 0x" << String(after.address(), HEX) << endl;
if(ota.setBootPartition(after)) {
Serial.println(F("Restarting...\r\n"));
System.restart();
} else {
Serial.println(F("Switch failed."));
}
}
void showInfo()
{
Serial.println();
Serial << _F("SDK: v") << system_get_sdk_version() << endl;
Serial << _F("Free Heap: ") << system_get_free_heap_size() << endl;
Serial << _F("CPU Frequency: ") << system_get_cpu_freq() << " MHz" << endl;
Serial << _F("System Chip ID: ") << String(system_get_chip_id(), HEX) << endl;
Serial << _F("SPI Flash ID: ") << String(Storage::spiFlash->getId(), HEX) << endl;
Serial << _F("SPI Flash Size: ") << String(Storage::spiFlash->getSize(), HEX) << endl;
auto before = ota.getRunningPartition();
auto after = ota.getNextBootPartition();
Serial << _F("Current ") << before.name() << " @ 0x" << String(before.address(), HEX) << ", future " << after.name()
<< " @ 0x" << String(after.address(), HEX) << endl;
}
void showPrompt()
{
Serial << _F("OTA> ") << commandBuffer;
}
void handleCommand(const String& str)
{
if(F("connect") == str) {
Serial << _F("Connecting to '") << WIFI_SSID << "'..." << endl;
WifiStation.config(WIFI_SSID, WIFI_PWD);
WifiStation.enable(true);
WifiStation.connect();
return;
}
if(F("ip") == str) {
Serial << "ip: " << WifiStation.getIP() << ", mac: " << WifiStation.getMacAddress() << endl;
return;
}
if(F("ota") == str) {
doUpgrade();
return;
}
if(F("switch") == str) {
doSwitch();
return;
}
if(F("restart") == str) {
System.restart();
return;
}
if(F("ls") == str) {
Directory dir;
if(dir.open()) {
while(dir.next()) {
Serial << " " << dir.stat().name << endl;
}
}
Serial << _F("filecount ") << dir.count() << endl;
return;
}
if(F("cat") == str) {
Directory dir;
if(dir.open() && dir.next()) {
auto filename = dir.stat().name.c_str();
Serial << "dumping file " << filename << ": " << endl;
// We don't know how big the is, so streaming it is safest
FileStream fs;
fs.open(filename);
Serial.copyFrom(&fs);
Serial.println();
} else {
Serial.println(F("Empty spiffs!"));
}
return;
}
if(F("info") == str) {
showInfo();
return;
}
if(F("help") == str) {
Serial.print(_F("\r\n"
"available commands:\r\n"
" help - display this message\r\n"
" ip - show current ip address\r\n"
" connect - connect to wifi\r\n"
" restart - restart the device\r\n"
" switch - switch to the other rom and reboot\r\n"
" ota - perform ota update, switch rom and reboot\r\n"
" info - show device info\r\n"));
if(spiffsPartition) {
Serial.print(_F(" ls - list files in spiffs\r\n"
" cat - show first file in spiffs\r\n"));
}
Serial.println();
return;
}
Serial << _F("unknown command: ") << str << endl;
}
void serialCallBack(Stream& stream, char, uint16_t)
{
switch(commandBuffer.process(stream, Serial)) {
case LineBufferBase::Action::submit:
if(commandBuffer) {
handleCommand(String(commandBuffer));
commandBuffer.clear();
}
showPrompt();
break;
case LineBufferBase::Action::clear:
showPrompt();
break;
default:;
}
}
} // namespace
void init()
{
Serial.begin(SERIAL_BAUD_RATE); // 115200 by default
Serial.systemDebugOutput(true); // Debug output to serial
// mount spiffs
auto partition = ota.getRunningPartition();
spiffsPartition = findSpiffsPartition(partition);
if(spiffsPartition) {
debugf("trying to mount %s @ 0x%08x, length %d", spiffsPartition.name().c_str(), spiffsPartition.address(),
spiffsPartition.size());
spiffs_mount(spiffsPartition);
}
WifiAccessPoint.enable(false);
WifiEvents.onStationGotIP([](IpAddress ip, IpAddress netmask, IpAddress gateway) { showPrompt(); });
Serial << endl
<< _F("Currently running ") << partition.name() << " @ 0x" << String(partition.address(), HEX) << '.' << endl
<< _F("Type 'help' and press enter for instructions.") << endl
<< endl;
showPrompt();
Serial.onDataReceived(serialCallBack);
}