c35be7c066
Introduce new testing-app example. Add a new coap error code for blockwise transfer. Add include-file for bootloader callbacks (jumptable). Note that only the bootloader for osd-merkur-256 will support OTA-update, the -128 simply has not enough flash memory, so only in the -256 we have the bootloader functions in the jump-table of the bootloader and in the bootloader-if.h include-file.
9 lines
229 B
C
9 lines
229 B
C
#ifndef BOOTLOADER_IF_H_
|
|
#define BOOTLOADER_IF_H_
|
|
|
|
extern uint8_t bootloader_get_mac(uint8_t);
|
|
extern int bootloader_write_page_to_flash
|
|
(uint32_t address, unsigned int size, unsigned char *p);
|
|
|
|
#endif /* BOOTLOADER_IF_H_ */
|