源码获取请查看第一篇文章。 1.qs100模块简单使用笔记(电信物联网平台ctwing) 本章讲解串口使用, QS100共有三个串口,Uart0,Uart1,Uart2,在原理图里简称为U0,U1,U2。
Uart0是图中的LOG Uart1就是图中的U2_RXD,U2_TXD Uart2就是SPI的miso mosi
typedef enum
{
ZOS_UART_BUS_1,
ZOS_UART_BUS_2,
ZOS_UART_BUS_NONE
} ZOS_UART_BUS;
这是串口的设备号 但是我在使用时, ZOS_UART_BUS_1对应的实际引脚是U2, ZOS_UART_BUS_2对应的实际引脚是SPI的miso mosi 这一点需要注意。
UART发送任务实现:
void hal_uart_IT_demo_task(void)
{
ZOS_UART_CONFIG uart_cfg;
uart_cfg.baud_rate=9600;
uart_cfg.data_bits=ZOS_UART_DATA_BITS_8;
uart_cfg.parity=ZOS_UART_PARITY_NONE;
uart_cfg.stop_bits=ZOS_UART_STOP_BITS_1;
zos_uart_init(ZOS_UART_BUS_1,&uart_cfg,uart_callback);
while(1)
{
zos_task_delay(5000);
zos_uart_write(ZOS_UART_BUS_1,"open",4);
}
}
void hal_uart_IT_demo_task_init(void)
{
demo_uart_handle = zos_task_create("hal_uart_IT_demo_task",hal_uart_IT_demo_task, ZOS_NULL, 1024, task_Priority_Normal);
}
int zos_main(void)
{
hal_uart_IT_demo_task_init();
}```
|