rt-thread-official/bsp/dm365/platform/reset.c

64 lines
929 B
C
Raw Normal View History

2015-09-04 12:30:20 +08:00
/*
* Copyright (c) 2006-2021, RT-Thread Development Team
2015-09-04 12:30:20 +08:00
*
* SPDX-License-Identifier: Apache-2.0
2015-09-04 12:30:20 +08:00
*
* Change Logs:
* Date Author Notes
* 2010-11-13 weety first version
2015-09-04 12:30:20 +08:00
*/
2015-09-04 21:58:08 +08:00
2015-09-04 12:30:20 +08:00
#include <rthw.h>
#include <rtthread.h>
#include "dm36x.h"
/**
* @addtogroup DM36X
*/
/*@{*/
/**
* reset cpu by dog's time-out
*
*/
void machine_reset()
{
reset_system();
2015-09-04 12:30:20 +08:00
}
/**
* shutdown CPU
*
*/
void machine_shutdown()
{
}
#ifdef RT_USING_FINSH
#include <finsh.h>
FINSH_FUNCTION_EXPORT_ALIAS(rt_hw_cpu_reset, reset, restart the system);
#ifdef FINSH_USING_MSH
int cmd_reset(int argc, char** argv)
{
rt_hw_cpu_reset();
return 0;
2015-09-04 12:30:20 +08:00
}
int cmd_shutdown(int argc, char** argv)
{
rt_hw_cpu_shutdown();
return 0;
2015-09-04 12:30:20 +08:00
}
FINSH_FUNCTION_EXPORT_ALIAS(cmd_reset, __cmd_reset, restart the system.);
FINSH_FUNCTION_EXPORT_ALIAS(cmd_shutdown, __cmd_shutdown, shutdown the system.);
#endif
#endif
/*@}*/