]> granicus.if.org Git - esp-idf/commitdiff
Size of structure ware updated.
authorDmitry <Dmitry@espressif.com>
Mon, 12 Mar 2018 04:30:35 +0000 (07:30 +0300)
committerDmitry <Dmitry@espressif.com>
Mon, 12 Mar 2018 04:30:35 +0000 (07:30 +0300)
components/wear_levelling/private_include/WL_Config.h

index 203c15a5e1f5881b0c0f4952a563a1d9752455c7..4fd40b547fb2801e44cf198c2b77eb6ea7f95e48 100644 (file)
@@ -29,12 +29,12 @@ typedef struct WL_Config_s {
     uint32_t wr_size;       /*!< Minimum amount of bytes per one block at write operation: 1...*/\r
     uint32_t version;       /*!< A version of current implementatioon. To erase and reallocate complete memory this ID must be different from id before.*/\r
     size_t   temp_buff_size;  /*!< Size of temporary allocated buffer to copy from one flash area to another. The best way, if this value will be equal to sector size.*/\r
-    uint32_t reserved[6];   /*!< dummy array to make wl_config_t size compatible with flash encryption (divided by 16)*/\r
+    uint32_t reserved[5];   /*!< dummy array to make wl_config_t size compatible with flash encryption (divided by 16)*/\r
     uint32_t crc;           /*!< CRC for this config*/\r
 public:\r
     WL_Config_s()\r
     {\r
-        for (int i=0 ; i< 6 ; i++) this->reserved[i] = 0;\r
+        for (int i=0 ; i< 5 ; i++) this->reserved[i] = 0;\r
     }\r
 } wl_config_t;\r
 \r