2018-09-02 18:44:28 +08:00
|
|
|
/*
|
2022-08-30 03:35:23 +08:00
|
|
|
* Copyright (c) 2006-2022, RT-Thread Development Team
|
2018-09-02 18:44:28 +08:00
|
|
|
*
|
2018-11-16 20:30:56 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2018-09-02 18:44:28 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2006-08-31 Bernard first implementation
|
|
|
|
* 2018-09-02 xuzhuoyi modify for TMS320F28379D version
|
2022-10-15 12:56:00 +08:00
|
|
|
* 2022-08-21 qiyu modify the entry function
|
2018-09-02 18:44:28 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <rthw.h>
|
|
|
|
#include <rtthread.h>
|
|
|
|
#include "board.h"
|
|
|
|
|
|
|
|
int main(void)
|
|
|
|
{
|
2022-08-30 03:35:23 +08:00
|
|
|
unsigned long x=10000;
|
2018-09-02 18:44:28 +08:00
|
|
|
|
2022-08-30 03:35:23 +08:00
|
|
|
while(x)
|
|
|
|
{
|
|
|
|
x--;
|
|
|
|
}
|
2018-09-02 18:44:28 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*@}*/
|