|
| int | fota_download_init (fota_download_callback_t client_callback) |
| | Initialize the firmware over-the-air download library.
|
| |
| void | fota_download_if_name_set (const char *if_name) |
| | Specify a network interface for the FOTA download library to use.
|
| |
| int | fota_download (const char *host, const char *file, const int *sec_tag_list, uint8_t sec_tag_count, uint8_t pdn_id, size_t fragment_size, const enum dfu_target_image_type expected_type) |
| | Download the given file with the specified image type from the given host.
|
| |
| int | fota_download_with_host_cfg (const char *host, const char *file, int sec_tag, uint8_t pdn_id, size_t fragment_size, const enum dfu_target_image_type expected_type, const struct downloader_host_cfg *host_cfg) |
| | Download the given file with the specified image type from the given host.
|
| |
| int | fota_download_any (const char *host, const char *file, const int *sec_tag_list, uint8_t sec_tag_count, uint8_t pdn_id, size_t fragment_size) |
| | Start downloading the given file of any image type from the given host.
|
| |
| int | fota_download_start (const char *host, const char *file, int sec_tag, uint8_t pdn_id, size_t fragment_size) |
| | Start downloading the given file of any image type from the given host.
|
| |
| int | fota_download_start_with_image_type (const char *host, const char *file, int sec_tag, uint8_t pdn_id, size_t fragment_size, const enum dfu_target_image_type expected_type) |
| | Download the given file with the specified image type from the given host.
|
| |
| int | fota_download_cancel (void) |
| | Cancel FOTA image downloading.
|
| |
| int | fota_download_target (void) |
| | Get target image type.
|
| |
| int | fota_download_s0_active_get (bool *const s0_active) |
| | Get the active bootloader (B1) slot, s0 or s1.
|
| |
| int | fota_download_b1_file_parse (char *s0_s1_files) |
| | Parse and modify the provided file path so that it points to the bootloader file that should be used for a bootloader (B1) FOTA update.
|
| |