cmd_nvs.h 501 B

12345678910111213141516171819202122
  1. /* Console example — declarations of command registration functions.
  2. This example code is in the Public Domain (or CC0 licensed, at your option.)
  3. Unless required by applicable law or agreed to in writing, this
  4. software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
  5. CONDITIONS OF ANY KIND, either express or implied.
  6. */
  7. #pragma once
  8. #include "nvs_flash.h"
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12. // Register NVS functions
  13. void register_nvs();
  14. #ifdef __cplusplus
  15. }
  16. #endif