2.2. DEMO_HELLO工程说明
概述
本工程展示了demo_hello的使用示例:
创建hello_demo_task线程
具体的示例工程代码详见 apps/demo/demo_hello
。
2.2.1. 代码流程
1.app_main()入口:
A)打印程序运行时刻
B)创建demo_hello启动任务hello_demo_task
void app_main()
{
printf("\r\n\r\n\r\n\r\n\r\n ------------hello demo run %s-------------\r\n\r\n\r\n\r\n\r\n", __TIME__);
os_task_create(hello_demo_task, NULL, 10, 1000, 0, "hello_demo_task");
}
2.2.2. 常见问题
demo_hello工程是79系列最简单的demo工程,用户可以添加
apps/common/example
下的示例进行工程的功能增加,或者自行在此demo_hello工程上进行功能开发。