This repository has been archived by the owner on Apr 23, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathmain.cpp
98 lines (77 loc) · 2.55 KB
/
main.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
#include "mbed.h"
#include "SDBlockDevice.h"
#include "FATFileSystem.h"
#define SD_MOUNT_PATH "sd"
#define FULL_UPDATE_FILE_PATH "/" SD_MOUNT_PATH "/" MBED_CONF_APP_UPDATE_FILE
#if !defined(POST_APPLICATION_ADDR)
#error "target.restrict_size must be set for your target in mbed_app.json"
#endif
//Pin order: MOSI, MISO, SCK, CS
SDBlockDevice sd(MBED_CONF_APP_SD_CARD_MOSI, MBED_CONF_APP_SD_CARD_MISO,
MBED_CONF_APP_SD_CARD_SCK, MBED_CONF_APP_SD_CARD_CS);
FATFileSystem fs(SD_MOUNT_PATH);
FlashIAP flash;
void apply_update(FILE *file, uint32_t address);
int main()
{
sd.init();
fs.mount(&sd);
FILE *file = fopen(FULL_UPDATE_FILE_PATH, "rb");
if (file != NULL) {
printf("Firmware update found\r\n");
apply_update(file, POST_APPLICATION_ADDR);
fclose(file);
remove(FULL_UPDATE_FILE_PATH);
} else {
printf("No update found to apply\r\n");
}
fs.unmount();
sd.deinit();
printf("Starting application\r\n");
mbed_start_application(POST_APPLICATION_ADDR);
}
void apply_update(FILE *file, uint32_t address)
{
fseek(file, 0, SEEK_END);
long len = ftell(file);
printf("Firmware size is %ld bytes\r\n", len);
fseek(file, 0, SEEK_SET);
flash.init();
const uint32_t page_size = flash.get_page_size();
char *page_buffer = new char[page_size];
uint32_t addr = address;
uint32_t next_sector = addr + flash.get_sector_size(addr);
bool sector_erased = false;
size_t pages_flashed = 0;
uint32_t percent_done = 0;
while (true) {
// Read data for this page
memset(page_buffer, 0, sizeof(char) * page_size);
int size_read = fread(page_buffer, 1, page_size, file);
if (size_read <= 0) {
break;
}
// Erase this page if it hasn't been erased
if (!sector_erased) {
flash.erase(addr, flash.get_sector_size(addr));
sector_erased = true;
}
// Program page
flash.program(page_buffer, addr, page_size);
addr += page_size;
if (addr >= next_sector) {
next_sector = addr + flash.get_sector_size(addr);
sector_erased = false;
}
if (++pages_flashed % 3 == 0) {
uint32_t percent_done_new = ftell(file) * 100 / len;
if (percent_done != percent_done_new) {
percent_done = percent_done_new;
printf("Flashed %3ld%%\r", percent_done);
}
}
}
printf("Flashed 100%%\r\n");
delete[] page_buffer;
flash.deinit();
}