Merge pull request #6359 from davidsaada/david_sotp_cpp

NVStore: add comments in header file for Doxygen formatting sake.
pull/6192/head
Cruz Monrreal 2018-03-16 11:34:40 -05:00 committed by GitHub
commit 0a1fc956ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -50,6 +50,11 @@ typedef enum {
// defines 2 areas - active and nonactive, not configurable
#define NVSTORE_NUM_AREAS 2
/** NVStore class
*
* Class for storing data by keys in the internal flash
*/
class NVStore : private mbed::NonCopyable<NVStore> {
public:
@ -399,6 +404,7 @@ private:
int do_set(uint16_t key, uint16_t buf_size, const void *buf, uint16_t flags);
};
/** @}*/
#endif // NVSTORE_ENABLED