资源简介
hal 串口通信 示例代码
代码片段和文件信息
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include “minicom.h“
#define BAUDRATE 115200
#define FALSE -1
#define TRUE 0
int speed_arr[] = {B115200 B38400 B19200 B9600 B4800 B2400 B1200 B300};
int name_arr[] = {115200 38400 19200 9600 4800 2400 1200 300};
static int fd;
void set_speed(int fd int speed)
{
unsigned int i;
struct termios options;
if( tcgetattr( fd&op4tions)==FALSE)//get termios
{
perror(“tcgetattr“);
return;
}
for ( i= 0;i {
if(speed == name_arr[i])
{
tcflush(fd TCIOFLUSH);//flush I/O buffer
- 上一篇:二维码扫描+QT
- 下一篇:基于RRT及其改进型的路径规划算法
相关资源
- mfc串口程序
- VS2008基于MFC的对话框编程串口上位机
- MFC串口通讯接受数据双缓冲画波形图
- 串口调试助手c++源码
- 完整串口通信程序Vc++源代码
- MXC1730.zip
- MFC上位机x64串口通信程序
- VS2010+MFC串口助手,自动识别串口,支
- Visual C++串口通信及测控应用详解
- VS2017基于MFC 串口通信上位机程序
- Visual C++Turbo C 串口通信编程实践 第二
- modbus串口从机程序基于libmodbus,《M
- MFC 编写的仪器测试软件
- python实现串口传文件调用PCOMM.dll Zm
- MFC实现串口通信16进制发送接收
- 串口数据波形显示
- RS232串口通讯VS2010
- 基于QT5开发漂亮的串口调试助手源码
- C++获取GPS串口数据源代码.doc
- C语言Linux串口编程(serial.c)
- 51单片机串口控制io带动气缸运动
- sr830操作手册原版
- VxWorks串口编程代码
- 基于C++MFC-RS485串口通信demo-完整版-代
- Qt5 串口助手源代码
- CSerialPort串口类最新修正版2017-03-12
- Linux c++多线程串口编程demo
- 两串口通讯C语言源代码
- 第三方串口类
- VC++ 串口实现双机互联 包含视窗加代
评论
共有 条评论