4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-21 02:27:10 +08:00

bsp:ls2k:unify code format

This commit is contained in:
michael 2020-09-17 10:27:04 +08:00
parent 93bcc2e0d2
commit 623bf0abc9

View File

@ -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 <rtthread.h>
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);