File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,8 @@ class FileSystemStore : public KVStore {
50
50
* if it doesn't exist, creating it by default. If other init modes are desired,
51
51
* set the flags as necessary.
52
52
*
53
- * @param[in] no_overwrite If no valid FileSystemStore is found, do not create one.
53
+ * @param[in] flags Flags that determine how the FileSystemStore allows KV
54
+ * read/write and store creation.
54
55
*
55
56
* @returns MBED_SUCCESS Success.
56
57
* MBED_ERROR_INITIALIZATION_FAILED No valid FileSystemStore found on the device.
Original file line number Diff line number Diff line change @@ -74,7 +74,9 @@ class KVStore {
74
74
* erasing if necessary. If this is undesired, set the no_overwrite parameter
75
75
* to true.
76
76
*
77
- * @param[in] no_overwrite If true, KVStore will not modify the underlying storage.
77
+ * @param[in] flags Flags that determine how the FileSystemStore allows KV
78
+ * read/write and store creation.
79
+ *
78
80
*
79
81
* @returns MBED_ERROR_INITIALIZATION_FAILED No valid KVStore in the storage.
80
82
* MBED_SUCCESS on success or an error code on other failure
Original file line number Diff line number Diff line change @@ -74,6 +74,9 @@ class SecureStore : public KVStore {
74
74
* @brief Initialize SecureStore class. It will also initialize
75
75
* the underlying KVStore and the rollback protection KVStore by default.
76
76
* If other init modes are needed, set the flags as necessary.
77
+ *
78
+ * @param[in] flags Flags that determine how the FileSystemStore allows KV
79
+ * read/write and store creation.
77
80
*
78
81
* @returns MBED_SUCCESS Success.
79
82
* or any other error from underlying KVStore instances.
Original file line number Diff line number Diff line change @@ -63,7 +63,8 @@ class TDBStore : public KVStore {
63
63
* is not valid, TBDStore will overwrite the data by default. If other init modes are
64
64
* desired, set the flags as necessary.
65
65
*
66
- * @param[in] flags The read/write and initiazation mode of the TBDStore.
66
+ * @param[in] flags Flags that determine how the FileSystemStore allows KV
67
+ * read/write and store creation.
67
68
*
68
69
* @returns MBED_SUCCESS Success.
69
70
* MBED_ERROR_INITIALIZATION_FAILED No valid TBD store found in the BlockDevice.
You can’t perform that action at this time.
0 commit comments