Skip to content

Commit 76d9208

Browse files
manchozRocketct
andauthoredJun 25, 2020
Import SSU and add minor changes (#1)
Co-authored-by: Riccardo Rizzo <37290960+Rocketct@users.noreply.github.com>
1 parent 0a6b46e commit 76d9208

File tree

4 files changed

+2327
-2324
lines changed

4 files changed

+2327
-2324
lines changed
 

‎libraries/SSU/examples/SSU_LoadBinary/SSU_LoadBinary.ino

+17-23
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,24 @@
22
* INCLUDE
33
**************************************************************************************/
44

5-
#include <Arduino_MKRMEM.h>
5+
6+
#include <MKRGSM.h>
7+
68

79
/**************************************************************************************
810
* CONSTANTS
911
**************************************************************************************/
1012

11-
static uint8_t const BINARY[] =
13+
static char const BINARY[] =
14+
1215
{
1316
#include "Binary.h"
1417
};
1518

19+
20+
GSMFileUtils fileUtils;
21+
22+
1623
/**************************************************************************************
1724
* SETUP/LOOP
1825
**************************************************************************************/
@@ -22,40 +29,27 @@ void setup() {
2229

2330
unsigned long const start = millis();
2431
for(unsigned long now = millis(); !Serial && ((now - start) < 5000); now = millis()) { };
25-
26-
flash.begin();
27-
28-
Serial.print("Mounting ... ");
29-
if(SPIFFS_OK != filesystem.mount()) {
30-
Serial.println("mount() failed with error code "); Serial.println(filesystem.err()); return;
31-
}
32-
Serial.println("OK");
3332

33+
Serial.print("Accessing SARA U-201 Filesystem... ");
34+
if(!fileUtils.begin()) {
35+
Serial.println("failed.");
36+
return;
3437

35-
Serial.print("Checking ... ");
36-
if(SPIFFS_OK != filesystem.check()) {
37-
Serial.println("check() failed with error code "); Serial.println(filesystem.err()); return;
3838
}
3939
Serial.println("OK");
40-
41-
4240
Serial.print("Writing \"UPDATE.BIN\" ... ");
43-
File file = filesystem.open("UPDATE.BIN", CREATE | READ_WRITE| TRUNCATE);
4441

45-
int const bytes_to_write = sizeof(BINARY);
46-
int const bytes_written = file.write((void *)BINARY, bytes_to_write);
42+
uint32_t bytes_to_write = sizeof(BINARY);
43+
auto bytes_written = fileUtils.downloadFile("UPDATE.BIN", BINARY, bytes_to_write);
4744

4845
if(bytes_written != bytes_to_write) {
49-
Serial.println("write() failed with error code "); Serial.println(filesystem.err()); return;
46+
Serial.println("downloadFile failed.");return;
47+
5048
} else {
5149
Serial.print("OK (");
5250
Serial.print(bytes_written);
5351
Serial.println(" bytes written)");
5452
}
55-
56-
Serial.print("Unmounting ... ");
57-
filesystem.unmount();
58-
Serial.println("OK");
5953
}
6054

6155
void loop() {

‎libraries/SSU/examples/SSU_Usage/SSU_Usage.ino

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@
3030
running on the board. After this UPDATE.BIN is deleted from the flash.
3131
*/
3232

33-
#include <SFU.h>
33+
34+
#include <SSU.h>
35+
3436

3537
void setup() {
3638
Serial.begin(9600);

‎libraries/SSU/extras/SSUBoot/SSUBoot.ino

+22-15
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
**************************************************************************************/
2222

2323
#include <FlashStorage.h>
24-
#include "MKRGSM.h"
24+
#include <MKRGSM.h>
25+
2526

2627
/**************************************************************************************
2728
DEFINE
@@ -36,14 +37,18 @@
3637
GLOBAL CONSTANTS
3738
**************************************************************************************/
3839

39-
static char const UPDATE_FILE_NAME[] = "UPDATE.BIN";
40+
static constexpr char UPDATE_FILE_NAME[] = "UPDATE.BIN";
41+
static constexpr char CHECK_FILE_NAME[] = "UPDATE.OK";
42+
4043

4144
/**************************************************************************************
4245
GLOBAL VARIABLES
4346
**************************************************************************************/
4447

4548
FlashClass mcu_flash;
46-
GSMFileUtils fileUtils(false);
49+
50+
GSMFileUtils fileUtils;
51+
4752
/**************************************************************************************
4853
FUNCTION DECLARATION
4954
**************************************************************************************/
@@ -62,16 +67,18 @@ int main()
6267

6368
delay(1);
6469

65-
String filename = UPDATE_FILE_NAME;
70+
constexpr size_t blockSize = 512;
6671

67-
const size_t blockSize = 512;
68-
69-
MODEM.begin();
7072
fileUtils.begin();
73+
7174
bool update_success = false;
72-
if (fileUtils.listFile("UPDATE.OK") == 1) {
73-
auto size = fileUtils.listFile(filename);
74-
auto cycles = (size / blockSize) + 1;
75+
76+
// Try to update only if update file
77+
// has been download successfully.
78+
if (fileUtils.listFile(CHECK_FILE_NAME) == 1) {
79+
uint32_t size = fileUtils.listFile(UPDATE_FILE_NAME);
80+
size_t cycles = (size / blockSize) + 1;
81+
7582
if (size > SSU_SIZE) {
7683
size -= SSU_SIZE;
7784

@@ -81,17 +88,17 @@ int main()
8188

8289
for (auto i = 0; i < cycles; i++) {
8390
uint8_t block[blockSize] { 0 };
84-
digitalWrite(LED_BUILTIN,LOW);
85-
auto read = fileUtils.readBlock(filename, (i * blockSize) + SSU_SIZE, blockSize, block);
86-
digitalWrite(LED_BUILTIN,HIGH);
91+
digitalWrite(LED_BUILTIN, LOW);
92+
uint32_t read = fileUtils.readBlock(UPDATE_FILE_NAME, (i * blockSize) + SSU_SIZE, blockSize, block);
93+
digitalWrite(LED_BUILTIN, HIGH);
8794
mcu_flash.write((void*)flash_address, block, read);
8895
flash_address += read;
8996
}
9097
update_success = true;
9198
}
9299
if (update_success) {
93-
fileUtils.deleteFile(filename);
94-
fileUtils.deleteFile("UPDATE.OK");
100+
fileUtils.deleteFile(UPDATE_FILE_NAME);
101+
fileUtils.deleteFile(CHECK_FILE_NAME);
95102
}
96103
}
97104
/* Jump to the sketch */

‎libraries/SSU/src/boot/mkrgsm1400.h

+2,285-2,285
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)
Please sign in to comment.