Add run firmware in RAM feature

This commit is contained in:
Marek Kraus
2024-06-19 18:09:16 +02:00
parent 7a85414ece
commit b583ec46f9
11 changed files with 145 additions and 13 deletions
+4 -1
View File
@@ -8,7 +8,10 @@
struct blisp_easy_transport {
uint8_t type; // 0 - memory, 1 - FILE file_handle
union {
FILE* file_handle;
struct {
FILE* file_handle;
int64_t file_size;
} file;
struct {
void* data_location;
uint32_t data_size;