/*
*******************************************************************************
*                     BoardExit
*
* Description:
*    关闭所有的硬件资源。
*
* Parameters:
*    :  input.  Boot阶段的参数。
*
* Return value:
*    返回成功或者失败。
*
* note:
*    无
*
*******************************************************************************
*/
__s32 BoardExit(void)
{
    /* 关闭 显示输出 */
    BoardExit_Display();

    /* 关闭 FM */

    /* 关闭 IR */

    /* 关闭 Key */
    /* 关闭 Uart */

    /* 关闭 Jtag */

    /* 关闭 PIO */

    /* 关闭 WatchDog */
    return 0;
}
Ejemplo n.º 2
0
int BoardExit(int logoOff, int exitStatus)
{
    BoardExit_Display(logoOff, exitStatus);
    return 0;
}