nvram_config.h 820 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief NVRAM config driver interface
  9. */
  10. #ifndef __INCLUDE_NVRAM_CONFIG_H__
  11. #define __INCLUDE_NVRAM_CONFIG_H__
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. #include <shell/shell.h>
  16. int nvram_config_get(const char *name, void *data, int max_len);
  17. int nvram_config_set(const char *name, const void *data, int len);
  18. int nvram_config_clear(int len);
  19. int nvram_config_clear_all(void);
  20. void nvram_config_dump(const struct shell *shell);
  21. int nvram_config_get_factory(const char *name, void *data, int max_len);
  22. int nvram_config_set_factory(const char *name, const void *data, int len);
  23. int nvram_config_defrag_user(void);
  24. /**
  25. * @}
  26. */
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30. #endif /* __INCLUDE_NVRAM_CONFIG_H__ */