额外增加了,接收数据的线程 与 界面更新的异步操作,只提供一种环境使用例子,具体的使用情况请结合实际自己修改
2021-09-23 10:10:59 169KB socket USB SerialPort
1
另一个Wishbone(甚至AXI-lite)控制的UART 由于已经有许多人牵手提出了UART内核,...对我来说,这似乎也很好完美的(很好)对全部事情从一开始就写...我自己的UART内核。 [] 此Verilog内核包含两个UART模块,,。 每一个都可以通过一个32位字配置为几乎任何波特率,一个或两个停止位,五个到八个数据位以及奇,偶,标记或空间奇偶校验。 如果您正在寻找包含所有这些功能的示例Verilog UART模块,那么您就找到了它。 该模块不仅包括简单的发送和接收,还包括相当通用的 。 对于那些正在寻找相当简单的FIFO的用户,无论是您的UART功能还是其他功能,您也都可以找到它。 如果您正在寻找启用了叉骨的外围设备,则此模块提供两种配置方法:可以包含在另一个更大的叉骨模块中,可以自己完成—与集成的FIFO和一个FIFO状态寄存器。 如果您想要的是AXI-lite
2021-09-16 16:37:38 371KB fpga verilog uart serialport
1
最近开发了一款Android串口小工具,具有Loopback和Send/Receive两种模式,比较简单,可以用于串口测试,也可以当标准的串口工具使用,使用起来特别方便,所以推荐给大家
2021-09-16 01:47:50 195KB Android 串口工具 SerialPort ComPort
1
serialport - 读和写访问串行端口的Node.js包
2021-09-13 10:59:25 1.06MB Node.js开发-硬件操作
1
node-serialport 是一个 Node.js 的包,用来对串口数据进行读写操作。基本示例代码:var SerialPort = require("serialport").SerialPort var serialPort = new SerialPort("/dev/tty-usbserial1", {   baudrate: 57600 }, false); // this is the openImmediately flag [default is true] serialPort.open(function (error) {   if ( error ) {     console.log('failed to open: ' error);   } else {     console.log('open');     serialPort.on('data', function(data) {       console.log('data received: '   data);     });     serialPort.write("ls\n", function(err, results) {       console.log('err '   err);       console.log('results '   results);     });   } });罗列所有串口:var serialPort = require("serialport"); serialPort.list(function (err, ports) {   ports.forEach(function(port) {     console.log(port.comName);     console.log(port.pnpId);     console.log(port.manufacturer);   }); });串口配置:baudRatedataBitsstopBitsparityrtsctsxonxoffxanyflowControlbufferSizeparserencodingdataCallbackdisconnectedCallbackplatformOptions - sets platform specific options, see below.目前已有很多项目在使用这个包进行串口处理:Johnny-Five - Firmata based Arduino Framework.Cylon.js - JavaScript Robotics, By Your Command.node-l8smartlight (source) A node library to control the L8 Smartlight via Bluetooth or USB portfirmata Talk natively to Arduino using the firmata protocol.tmpad source - a DIY midi pad using infrared, arduino, and nodejs. Videoduino - A higher level framework for working with Arduinos in node.js.Arduino Drinking Game Extravaganza - AKA "The Russian" a hexidecimal drinking game for geeks by Uxebu presented at JSConf EU 2011.Arduino controlling popcorn.js - Controlling a popcorn.js video with an Arduino kit.Robotic JavaScript - The first live presentation of the node-serialport code set as presented at JSConf EU 2010.devicestack - This module helps you to represent a device and its protocol.reflecta A communication protocol that combines Arduino Libraries and NodeJS into an integrated system.rc4pt-node - Control Popcorntime with an
2021-09-13 10:29:17 178KB 开源项目
1
地磅串口通信,实时读取地磅数据,优化了结束读取的时候会出现卡死的问题。该代码不会卡死
2021-09-10 13:56:22 890KB SerialPort 地磅读取数据 串口通信
1
源代码的节选,有编程的注释,利用SerialPort进行读取串口操作
2021-09-10 13:40:54 4KB vb.net SerialPort
1
串口通信,电子称数据读取。程序详细易懂,可以扩展到其他应用。 串口通信,电子称数据读取。程序详细易懂,可以扩展到其他应用。
2021-09-10 10:01:15 28KB C# SerialPort 电子称 c#接收电子秤
1
Unity 中适用于 Android、Linux、Mac OS 和 Windows 的强大的串行端口实用程序。 这是 Unity 的扩展插件,可为开发人员提供易于使用的强大计算机通信解决方案。
2021-09-09 18:06:17 3.34MB Unity SerialPort
1
SerialPort事件触发接收信息,实时传送获取信息
1