forked from forkineye/ESPixelStick
-
Notifications
You must be signed in to change notification settings - Fork 5
/
EFUpdate.h
82 lines (70 loc) · 1.93 KB
/
EFUpdate.h
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
/*
* EFUpdate.h
*
* Project: ESPixelStick - An ESP8266 and E1.31 based pixel driver
* Copyright (c) 2016 Shelby Merrick
* http://www.forkineye.com
*
* This program is provided free for you to use in any way that you wish,
* subject to the laws and regulations where you are using it. Due diligence
* is strongly suggested before using this code. Please give credit where due.
*
* The Author makes no warranty of any kind, express or implied, with regard
* to this program or the documentation contained in this document. The
* Author shall not be liable in any event for incidental or consequential
* damages in connection with, or arising out of, the furnishing, performance
* or use of these programs.
*
*/
#ifndef EFUPDATE_H_
#define EFUPDATE_H_
#define EFUPDATE_ERROR_OK (0)
#define EFUPDATE_ERROR_SIG (100)
#define EFUPDATE_ERROR_REC (101)
class EFUpdate {
public:
const uint32_t EFU_ID = 0x00554645; // 'E', 'F', 'U', 0x00
void begin();
bool process(uint8_t *data, size_t len);
bool hasError();
uint8_t getError();
bool end();
private:
/* Record types */
enum class RecordType : uint16_t {
NULL_RECORD,
SKETCH_IMAGE,
SPIFFS_IMAGE,
EEPROM_IMAGE
};
/* Update State */
enum class State : uint8_t {
HEADER,
RECORD,
DATA,
FAIL
};
/* EFU Header */
typedef union {
struct {
uint32_t signature;
uint16_t version;
} __attribute__((packed));
uint8_t raw[6];
} efuheader_t;
/* EFU Record */
typedef union {
struct {
RecordType type;
uint32_t size;
} __attribute__((packed));
uint8_t raw[6];
} efurecord_t;
State _state = State::FAIL;
size_t _loc = 0;
efuheader_t _header;
efurecord_t _record;
uint32_t _maxSketchSpace;
uint8_t _error;
};
#endif /* EFUPDATE_H_ */