登录
首页 » Windows开发 » 带硬件流控制的无线RS232,可以实现串口的无线传输

带硬件流控制的无线RS232,可以实现串口的无线传输

于 2022-11-30 发布 文件大小:336.99 kB
0 121
下载积分: 2 下载次数: 1

代码说明:

带硬件流控制的无线RS232,可以实现串口的无线传输-Hardware flow control with wireless RS232, serial port can realize wireless transmission

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • mfc源代码,有两个例子,分别为hellowindou和messagemap,望大家指教...
    mfc源代码,有两个例子,分别为hellowindou和messagemap,望大家指教-mfc source code, there are two examples, respectively hellowindou and messagemap, hope you enlighten
    2022-05-10 15:27:46下载
    积分:1
  • 求阶乘算法(0
    求阶乘算法(0---10000)标准C++语言控制台应用程序 可能很多人都曾经想过要实现一些比较大的数的阶乘,但是C++中提供的标准数据类型其存储空间太小,根本无法实现。我们可以通过其他方法来实现,本程序用一个很简单的算法实现数的阶乘,程序很短,也很简单,各处都有注释,相信大家很容易就可以看懂,下载源码后在VC6.0中打开编译后即可运行,程序经少许改动可以实现更大的数的阶乘,有兴趣的读者在看完本程序后可一动手试试,其乐无穷!!希望这个程序能给大家一点帮助-The arithmetic for counting factorial(0-10000) This is a standard C++ language console application, many people could want to relize the factorial of some large numbers, but the memory space of the standard data type provided by the C++ is too small, so it can not realize at all. But we can realize it by other method, the program realize the factorial of the number you give by a simple arithmetic ,this is a short and easy program, and there are remarks everywhere, I believe that everyone can easily understand it, after downloading the sound code you can open it in VC6.0, then edit and run it. you also can change something to realize the factorial of a larger number, the reader who is interesting in it can have a try, there are more happiness in it!! At last,
    2023-02-22 10:45:03下载
    积分:1
  • 丰满树操作: 用顺序存储结构实现; 结点形式:下标,元素值; 功能:查找结点,结点的中序前驱,中序后继,中序遍历,插入结点,删除结点...
    丰满树操作: 用顺序存储结构实现; 结点形式:下标,元素值; 功能:查找结点,结点的中序前驱,中序后继,中序遍历,插入结点,删除结点 -Fullness of the tree operations: storage structure in order to achieve junction forms: The next standard, element values function: to find nodes, nodes in the precursor sequence, in order follow-up, inorder traversal, insert node, delete node
    2023-03-11 16:45:04下载
    积分:1
  • 一个简单的java计算器
    一个简单的java计算器-a simple java Calculator
    2022-03-18 00:15:43下载
    积分:1
  • 此代码实现了快速检索mp3文件,并且把相应的信息显示出来,比如歌手名字,专辑,乐曲风格等,为不可多地的好代码...
    此代码实现了快速检索mp3文件,并且把相应的信息显示出来,比如歌手名字,专辑,乐曲风格等,为不可多地的好代码-this code has achieved rapid retrieval MP3 files, and to the corresponding display information, such as names of artists, albums, music style, so as to not more good code! !
    2022-06-20 16:40:14下载
    积分:1
  • 一个日历程序用MFC写的。 一个日历程序用MFC写的。
    一个日历程序用MFC写的。 一个日历程序用MFC写的。-A calendar program written using MFC. A calendar program written using MFC. A calendar program written using MFC.
    2022-05-22 10:13:11下载
    积分:1
  • Twain for win32,C++ Builder写的,请在你的程序中加以改进使用
    Twain for win32,C++ Builder写的,请在你的程序中加以改进使用-Twain for win32, C Builder wrote, Please in your procedures to be used to improve
    2022-12-03 07:30:03下载
    积分:1
  • vb vb sql student information management system. Zip
    vb vb+sql学生信息管理系统.zip-vb vb sql student information management system. Zip
    2022-04-08 20:24:49下载
    积分:1
  • 利用DeviceIoControl函式控制光盘进退源码
    利用DeviceIoControl函式控制光盘进退源码-DeviceIoControl function to control the use of advance and retreat source CD-ROM
    2022-07-08 13:57:10下载
    积分:1
  • java异常处理
    3.8 异常处理  什么是异常  知道Java异常分类  处理异常的两种方式  throw和throws区别  如何创建自定义异常 概念: 在程序中,可能产生程序员没有预料到的各种错误情况,比如打开一个不存在的文件等,在Java中,这种在程序运行时可能出现的错误称为异常。  异常可以把“描述在正常执行过程中做什么事”的代码和“出了问题怎么办”的代码相分离 例子:demo05.ExceptionDemo.java Java异常分类A:  java.lang.Error,java.lang.Exception  Error(错误):jvm系统内部错误、资源耗尽等严重问题,发生Error时,编程人员无能 为力,只能终止程序,例如内存溢出等。  Exception(异常):因编程错误或偶然的外在因素导致的一般性问题,例如:对负数  开平方根、空指针访问等,当发生Exception 时,编程人员可以做出处理,并做出人性 化响应,比如弹出窗口,显示“请不要输入负数!”。 异常分类B:  检查性异常:编译器必须处理的异常,该类异常通常是Exception类型或其子类(RuntimeException类除外)//运行时异常   SQLException、IOException、ClassNotFoundException 例子:/DemoProject/src/com/hyg/demo08/FileInputStreamDemo.java  非检查性异常:编译器不要求强制处理的异常,RuntimeException类及其所有子类都是非检查性异常。   NullPointerException、ClassCastException 例子:equa
    2022-02-14 14:02:16下载
    积分:1
  • 696518资源总数
  • 105665会员总数
  • 6今日下载