-
This chapter in the Windows operating system designed to provide Modbus communic...
本章提供于Windows 操作系统设计Modbus 通信程序所需的基本子程
序,以Borland C++ Builder V5.0 所设计的Sample Porgram 提供读者参考。
所有原始档(source program)都存于随书赠送的光盘片内。读者必须了
解通信程序是需要高度与操作系统的API 相配合,各种资料型态的转换,
Multi-Thread 的运用,时间的掌控等事项,以C 语言为最适合的语言。-This chapter in the Windows operating system designed to provide Modbus communication program required for the basic subroutine to Borland C++ Builder V5.0 is designed to provide readers Sample Porgram reference. All the original files (source program) are stored in the book with free CD-ROM chip. Readers must understand the communication procedures with the operating system requires a high degree of matching of the API, a variety of data types conversions, Multi-Thread the use of control over matters such as time to C language is the most suitable language.
- 2022-03-01 18:40:01下载
- 积分:1
-
Shannong mathematical methods of communication. Is the foundation of information...
山农的通信的数学方法。是信息论的奠基性文章。-Shannong mathematical methods of communication. Is the foundation of information theory article.
- 2022-01-26 02:57:22下载
- 积分:1
-
cc1100无线发送接收模块的详细资料!
cc1100无线发送接收模块的详细资料!-cc1100 wireless receiver module to send the detailed information!
- 2023-03-02 02:35:03下载
- 积分:1
-
这是大学里面学习《数据结构》,严蔚敏版本的配套配套练习册 数据结构C源代码 的答案...
这是大学里面学习《数据结构》,严蔚敏版本的配套配套练习册 数据结构C源代码 的答案-This is the university there to study
- 2023-03-19 17:55:03下载
- 积分:1
-
- 2022-05-25 04:54:17下载
- 积分:1
-
matlab从入门到高级进阶的必备好书,看了以后,希望对大家学习matlab有很高的提高!...
matlab从入门到高级进阶的必备好书,看了以后,希望对大家学习matlab有很高的提高!-matlab from entry to senior advanced essential books, looking after, in the hope that everyone has a very high learning matlab improve!
- 2023-03-01 18:50:04下载
- 积分:1
-
猜数字的C语言编写出来的
猜数字的C语言编写出来的-viewing the C language of
- 2023-07-04 03:20:03下载
- 积分:1
-
用于项目开发的好书
用于项目开发的好书-project development for the books
- 2022-01-27 09:22:31下载
- 积分:1
-
《分形算法与程序设计VC版》一书<5_02>:内含基于逃逸时间算法的Julia集源代码。双击Debug下的Julia.exe文件,程序运行;双击Ju...
《分形算法与程序设计VC版》一书:内含基于逃逸时间算法的Julia集源代码。双击Debug下的Julia.exe文件,程序运行;双击Julia.dsw文件,进入编辑环境。-"fractal algorithms and program design VC version," a book lt; 5_02gt; : Intron escape time algorithm based on the Julia set source code. Double-click the Debug Julia.exe documents, operating procedures; Double-click Julia.dsw documents into editing environment.
- 2022-04-29 09:29:50下载
- 积分:1
-
时钟闪烁移动
#include"reg51.h"
sbit SET_K = P1^0; //设置
sbit PLUS_K = P1^1;//左移加1
sbit SHIFT_K = P1^2;//左移
sbit CHANGE_K = P1^3;//切换 年、月、日
bit SecFlag = 0;
bit FlashFlag = 0;
unsigned int Counter = 0;
unsigned char Led0,Led1,Led2,Led3,Led4;
unsigned char Shift;
code unsigned char LedSeg[10] = {0x3f,0x06,0x5B,0x4f,0x66,0x6d,0x7d,0x07,0x7f,0x6f};
void Time0() interrupt 1 // 0: EX0 1:Time0 2: EX1 3: Time1,4:serial 中断
{
static unsigned int IntCnt;
TH0 = 0xfc;
TL0 = 0x66;
if(++IntCnt > 1000)
{
IntCnt = 0;
SecFlag = 1;
}
switch(++Counter%5) //显示功能
{
case 0:
- 2022-03-02 21:20:39下载
- 积分:1