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