欢迎加入交流群:ESP8266 AliOS Things 群 号: 107723112
所有教程请看 AliOS Things 入门教程系列
此教程在SimonLiu的CSDN博客同步更新。
由于
AliOS Things 2.1.0
的新特性,项目编译方式和配置和以前不太一样,所以SimonLiu重新写一遍helloworld的教程,顺便把uart打印的设置也重新写一下。
截至2019.3.14日:
- 首先底部工具栏编译按钮所编译的项目,仍然以工具栏选择的项目和目标平台为准。与配置文件无关。
-
aos make menuconfig
生成的配置文件是AliOS Things主目录下的.config
文件,运行aos make
命令编译的项目以配置文件.config
中的设置为准,与工具栏的项目和目标平台选择无关。此命令不一定能在项目文件夹内运行,此时退回上一级目录即可。终端窗口最小为19行80列。 - 本文目标:
- 编译helloword@esp8266项目
- 打印输出到UART1,波特率74880
3.1 升级aos-cube
到0.3.1
版本
升级:pip install --upgrade aos-cube
查看版本: aos --version
3.2 打开app/example/helloworld/helloworld.c
3.3 添加头文件
#include "driver/uart.h"
3.4 application_start()
添加如下内容:
uart_config_t uartConfig;
uartConfig.baud_rate = 74880;
uart_dev_t uart;
uart.port = 1;
uart.config = uartConfig;
hal_uart_init(&uart);
3.5 终端运行
aos make helloworld@esp8266 -c config
aos make && aos upload
网友评论