2017-08-15 16:11:19 +08:00
|
|
|
/* Console example — various system commands
|
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2023-03-24 13:50:48 +01:00
|
|
|
|
2018-09-20 19:26:14 +08:00
|
|
|
#include "cmd_system.h"
|
2018-01-31 14:04:40 +08:00
|
|
|
#include "sdkconfig.h"
|
|
|
|
|
2020-04-30 16:52:39 +02:00
|
|
|
void register_system(void)
|
|
|
|
{
|
|
|
|
register_system_common();
|
|
|
|
register_system_sleep();
|
2022-06-21 17:14:08 +02:00
|
|
|
}
|