欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【LiteOS】03-基于模板创建工程

程序员文章站 2022-03-13 17:32:12
...

此笔记由个人整理

华为IOT LiteOS开发实战营

第二天

一、安装配置Iot Link

  • 打开VS Code,进入扩展商店,搜索IoT Link,点击安装

【LiteOS】03-基于模板创建工程

  • 安装完成在左下角出现调试界面

【LiteOS】03-基于模板创建工程

  • 点击HOME进入主页

【LiteOS】03-基于模板创建工程

二、基于模板创建HELLO WORLD工程

  • 创建项目,名称只能为数字字母下划线,选择hello_world_demo

【LiteOS】03-基于模板创建工程

  • 进入demo选择hello_world_demo

【LiteOS】03-基于模板创建工程

  • 先查看IoT Link设置是否正确

【LiteOS】03-基于模板创建工程

【LiteOS】03-基于模板创建工程

  • 连接开发板,点击右下角烧录

【LiteOS】03-基于模板创建工程

  • 点击serail

【LiteOS】03-基于模板创建工程

  • 进入选择搜索到的开发板端口,波特率为115200,打开

【LiteOS】03-基于模板创建工程

  • 每隔四秒打印一条消息

【LiteOS】03-基于模板创建工程

三、扩展程序

  • 进入hello_world_demo.c文件

  • 添加程序

#include <stdint.h>
#include <stddef.h>
#include <string.h>

#include <osal.h>

static int app_hello_world_entry()
{
    while (1)
    {
        printf("Hello World! This is BearPi!\r\n");
        osal_task_sleep(4*1000);
    }
}

static int app_hello_world_test_entry()
{
    while (1)
    {
        printf("Hello World! This is test!\r\n");
        osal_task_sleep(4*1000);
    }
}
int standard_app_demo_main()
{
    osal_task_create("helloworld",app_hello_world_entry,NULL,0x400,NULL,2);
    osal_task_create("helloworld test",app_hello_world_test_entry,NULL,0x400,NULL,3);
    return 0;
}
  • 完成

【LiteOS】03-基于模板创建工程

第二天的任务完成了,第一次使用iot link开发软件,对LiteOS程序有了初步的认识

相关标签: 物联网