You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
264 B
11 lines
264 B
|
|
#ifndef UPDATER_H_
|
|
#define UPDATER_H_
|
|
|
|
bool updater_check_path (void *path);
|
|
bool updater_start (void);
|
|
bool updater_write (uint8_t *buf, uint32_t len);
|
|
void updater_finnish (void);
|
|
bool updater_verify (uint8_t *rbuff, uint8_t *hasbuff);
|
|
|
|
#endif /* UPDATER_H_ */
|
|
|