串口工具
wabil
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
[Python] 读写串口
# TODO 串口读取数据 import serial # 导入串口包 import time # 导入时间包 ser = serial.Serial("COM1",115200,timeout = 0.5) # 开启com1口,波特率115200,超时0.5s ser.flushInput() # 清空缓冲区 def main(): while True: count = ser.inWaiting() # 获取串口缓冲区数据 if count !=.原创 2021-09-09 21:25:02 · 1619 阅读 · 0 评论 -
Linux 串口读取
#include <stdlib.h> #include <fcntl.h> #include "stdio.h" #include "termios.h" #include "unistd.h" #include "limits.h" #include <stdint.h> #include "time.h" //=================== #include <sys/select.h> #include <sys/tim.原创 2021-07-09 16:45:16 · 6425 阅读 · 0 评论 -
日志工具 BnisLog 1.0.0
Bnis日志工具下载地址: (待定 。。。) Bnis日志工具版本: V1.0.0 Release at Jul 29 2020 20:17:56 1.工具采用极简介的风格来设计,主界面的控件尽量的少 (绿色软件无需安装)。 2.工具最主要的功能是日志调试,包括串口调试,网络调试,程序开发调试。 3.日志保存和智能过滤等功能是比较好用的日常开发调试测试功能。 4. 缤纷的主题色, 可清新护眼, 可炫酷深沉 。 设置主题颜色 Menu -> Display color set. ...原创 2020-07-29 20:43:45 · 540 阅读 · 0 评论
分享