Skip to content

Commit 0a1fc95

Browse files
authored
Merge pull request #6359 from davidsaada/david_sotp_cpp
NVStore: add comments in header file for Doxygen formatting sake.
2 parents aa4ebf1 + f20c54e commit 0a1fc95

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

features/nvstore/source/nvstore.h

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,11 @@ typedef enum {
5050
// defines 2 areas - active and nonactive, not configurable
5151
#define NVSTORE_NUM_AREAS 2
5252

53+
/** NVStore class
54+
*
55+
* Class for storing data by keys in the internal flash
56+
*/
57+
5358
class NVStore : private mbed::NonCopyable<NVStore> {
5459
public:
5560

@@ -399,6 +404,7 @@ class NVStore : private mbed::NonCopyable<NVStore> {
399404
int do_set(uint16_t key, uint16_t buf_size, const void *buf, uint16_t flags);
400405

401406
};
407+
/** @}*/
402408

403409
#endif // NVSTORE_ENABLED
404410

0 commit comments

Comments
 (0)