Data reception demo.

Dependencies:   modem_ref_helper CRC

Revision:
0:02418479dcf7
Child:
2:6652be2d061f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/files.cpp	Thu May 11 17:48:47 2017 +0000
@@ -0,0 +1,47 @@
+#include "files.h"
+#include "hwcfg.h"
+
+#include "kal_fs.h"
+
+#define __DEVICE_ID__               0x00000016
+
+const alp_file_header_t h_rev = {
+    .perm = RW_R,
+    .prop = FS_PERMANENT_NOTIF,
+    .afid = FID_ACTP_RPT_FULL,
+    .ifid = IFID_REPORT,
+    .size = HAL_U32_BYTE_SWAP((uint32_t)sizeof(revision_t)),
+    .alloc= HAL_U32_BYTE_SWAP((uint32_t)sizeof(revision_t))
+};
+
+const revision_t f_rev = {
+    .manufacturer_id     = __MANUFACTURER_ID__,
+    /// Device ID: Arbitrary number, at user/customer choice
+    .device_id           = __DEVICE_ID__,
+    /// Hardware Board ID:
+    .hw_version          = __HW_VERSION__,
+    /// Firmware Version: made of
+    ///  - major,minor and patch indexes
+    ///  - fw_id : "build-flavour"
+    ///  FW_ID | MAJOR | MINOR | PATCH | HASH |
+    //     1B  |  1B   |  1B   |   2B  |  4B  |
+    .fw_version.id       = 0,
+    .fw_version.major    = 1,
+    .fw_version.minor    = 0,
+    .fw_version.patch    = 0,
+    .fw_version.hash     = 0x00000000,
+    /// "file-system" signature
+    .fs_crc              = 0x00000000
+};
+
+const alp_file_header_t h_string_file = {
+    .perm = RW_RW,
+    .prop = FS_VOLATILE,
+    .afid = 0,
+    .ifid = 0,
+    .size = HAL_U32_BYTE_SWAP((uint32_t)SIZE_STRING_FILE),
+    .alloc= HAL_U32_BYTE_SWAP((uint32_t)SIZE_STRING_FILE)
+};
+
+uint8_t f_string_file[SIZE_STRING_FILE] = "Default string value";
+