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.
Dependencies: modem_ref_helper CRC DebouncedInterrupt
Diff: files.h
- Revision:
- 1:76a8a3cc5f2e
- Parent:
- 0:a2bbc478f812
--- a/files.h Thu Dec 14 14:22:40 2017 +0000 +++ b/files.h Thu Dec 14 18:25:58 2017 +0000 @@ -20,6 +20,11 @@ TYPEDEF_STRUCT_PACKED { uint8_t data[1024]; uint32_t crc; +} output_file_t; + +TYPEDEF_STRUCT_PACKED { + uint8_t data[1024]; + uint32_t crc; } input_file_t; #define FID_HOST_REV 65 @@ -27,6 +32,11 @@ extern alp_file_header_t h_rev; extern revision_t f_rev; +#define FID_OUTPUT_FILE 200 +#define SIZE_OUTPUT_FILE sizeof(output_file_t) +extern alp_file_header_t h_output_file; +extern output_file_t f_output_file; + #define FID_INPUT_FILE 201 #define SIZE_INPUT_FILE sizeof(input_file_t) extern alp_file_header_t h_input_file;