Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of mbed-dev by
targets/TARGET_Realtek/TARGET_AMEBA/ota_api.h@173:e131a1973e81, 2017-09-15 (annotated)
- Committer:
- AnnaBridge
- Date:
- Fri Sep 15 14:59:18 2017 +0100
- Revision:
- 173:e131a1973e81
This updates the lib to the mbed lib v 151
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
AnnaBridge | 173:e131a1973e81 | 1 | #ifndef MBED_OTA_API_H |
AnnaBridge | 173:e131a1973e81 | 2 | #define MBED_OTA_API_H |
AnnaBridge | 173:e131a1973e81 | 3 | |
AnnaBridge | 173:e131a1973e81 | 4 | #ifdef __cplusplus |
AnnaBridge | 173:e131a1973e81 | 5 | extern "C" { |
AnnaBridge | 173:e131a1973e81 | 6 | #endif |
AnnaBridge | 173:e131a1973e81 | 7 | |
AnnaBridge | 173:e131a1973e81 | 8 | extern uint32_t OTA_UpdateImage(uint32_t offset, uint32_t len, uint8_t *data); |
AnnaBridge | 173:e131a1973e81 | 9 | extern uint32_t OTA_ReadImage(uint32_t offset, uint32_t len, uint8_t *data); |
AnnaBridge | 173:e131a1973e81 | 10 | extern uint32_t OTA_MarkUpdateDone(void); |
AnnaBridge | 173:e131a1973e81 | 11 | extern void OTA_ResetTarget(void); |
AnnaBridge | 173:e131a1973e81 | 12 | |
AnnaBridge | 173:e131a1973e81 | 13 | #ifdef __cplusplus |
AnnaBridge | 173:e131a1973e81 | 14 | } |
AnnaBridge | 173:e131a1973e81 | 15 | #endif |
AnnaBridge | 173:e131a1973e81 | 16 | |
AnnaBridge | 173:e131a1973e81 | 17 | #endif /* MBED_OTA_API_H */ |
AnnaBridge | 173:e131a1973e81 | 18 |