diff --git a/bsp/ls2kdev/applications/pmcon.c b/bsp/ls2kdev/applications/pmcon.c index 82bca9c947..92b06cc8f2 100644 --- a/bsp/ls2kdev/applications/pmcon.c +++ b/bsp/ls2kdev/applications/pmcon.c @@ -1,15 +1,26 @@ +/* + * Copyright (c) 2006-2020, RT-Thread Development Team + * + * SPDX-License-Identifier: Apache-2.0 + * + * Change Logs: + * Date Author Notes + * 2020-09-17 maoxiaochuan first version + */ + + #include static void reboot() { - rt_hw_cpu_reset(); + rt_hw_cpu_reset(); } -MSH_CMD_EXPORT(reboot, reboot sample); +MSH_CMD_EXPORT(reboot, reboot system); static void poweroff() { - rt_hw_cpu_shutdown(); + rt_hw_cpu_shutdown(); } -MSH_CMD_EXPORT(poweroff, shutdown power sample); +MSH_CMD_EXPORT(poweroff, shutdown system);