Added support for NVS in console example

This commit is contained in:
Martin Válik
2019-01-11 09:51:50 +08:00
committed by Ivan Grokhotkov
parent 65d01336d3
commit 602d102403
7 changed files with 572 additions and 0 deletions
@@ -0,0 +1,21 @@
/* Console example — declarations of command registration functions.
This example code is in the Public Domain (or CC0 licensed, at your option.)
Unless required by applicable law or agreed to in writing, this
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
CONDITIONS OF ANY KIND, either express or implied.
*/
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
// Register NVS functions
void register_nvs();
#ifdef __cplusplus
}
#endif