nvs_priv.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* NVS: non volatile storage in flash
  2. *
  3. * Copyright (c) 2018 Laczen
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef __NVS_PRIV_H_
  8. #define __NVS_PRIV_H_
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. /*
  13. * MASKS AND SHIFT FOR ADDRESSES
  14. * an address in nvs is an uint32_t where:
  15. * high 2 bytes represent the sector number
  16. * low 2 bytes represent the offset in a sector
  17. */
  18. #define ADDR_SECT_MASK 0xFFFF0000
  19. #define ADDR_SECT_SHIFT 16
  20. #define ADDR_OFFS_MASK 0x0000FFFF
  21. /*
  22. * Status return values
  23. */
  24. #define NVS_STATUS_NOSPACE 1
  25. #define NVS_BLOCK_SIZE 32
  26. /* Allocation Table Entry */
  27. struct nvs_ate {
  28. uint16_t id; /* data id */
  29. uint16_t offset; /* data offset within sector */
  30. uint16_t len; /* data len within sector */
  31. uint8_t part; /* part of a multipart data - future extension */
  32. uint8_t crc8; /* crc8 check of the entry */
  33. } __packed;
  34. BUILD_ASSERT(offsetof(struct nvs_ate, crc8) ==
  35. sizeof(struct nvs_ate) - sizeof(uint8_t),
  36. "crc8 must be the last member");
  37. #ifdef __cplusplus
  38. }
  39. #endif
  40. #endif /* __NVS_PRIV_H_ */