-
RS232
用C#通过RS232来实现串口通信,并可对数据实现解析,供用户根据需求查看数据内容,并且可对数据进行分类查询。(To use C# to achieve through the RS232 serial communication, and can achieve resolution of the data for users to view data on demand content, and can classify the data query.)
- 2010-01-12 17:13:41下载
- 积分:1
-
BLDC
51单片机无刷直流电机proteus仿真无刷电机 IR2101驱动电机(51 single brushless DC motor)
- 2013-10-26 20:28:08下载
- 积分:1
-
56
ST分段控制的iOS,精选ios编程学习源码,很好的参考资料。(ST segment control of iOS, ios programming learning source selection, a good reference.)
- 2014-02-15 20:22:28下载
- 积分:1
-
Uart_receive
STM32F4系列串口接收函数,,程序已测试通过。(void USART1_IRQHandler(void) //串口1中断服务程序
{
u8 Res
#ifdef OS_TICKS_PER_SEC //如果时钟节拍数定义了,说明要使用ucosII了.
OSIntEnter()
#endif
if(USART_GetITStatus(USART1, USART_IT_RXNE) != RESET) //接收中断(接收到的数据必须是0x0d 0x0a结尾)
{
Res =USART_ReceiveData(USART1) //(USART1->DR) //读取接收到的数据
if((USART_RX_STA&0x8000)==0)//接收未完成
{
if(USART_RX_STA&0x4000)//接收到了0x0d
{
if(Res!=0x0a)
USART_RX_STA=0 //接收错误,重新开始
else
USART_RX_STA|=0x8000 //接收完成了
}
else //还没收到0X0D
{
if(Res==0x0d)USART_RX_STA|=0x4000
else
{
USART_RX_BUF[USART_RX_STA&0X3FFF]=Res
USART_RX_STA++
if(USART_RX_STA>(USART_REC_LEN-1))USART_RX_STA=0 //接收数据错误,重新开始接收
}
}
}
}
#ifdef OS_TICKS_PER_SEC //如果时钟节拍数定义了,说明要使用ucosII了.
OSIntExit()
#endif
} )
- 2016-01-21 17:04:30下载
- 积分:1
-
用C#制作的一个简单程序,具体实现具体如下:将文本框中的数据保存为*.txt文件,并实现再次读取功能...
用C#制作的一个简单程序,具体实现具体如下:将文本框中的数据保存为*.txt文件,并实现再次读取功能-C# produced by a simple process, concrete realization as follows : the text box will save the data as*. txt documentation, and again read function
- 2022-07-23 05:30:57下载
- 积分:1
-
rtp库
说明: jrtplib库如何使用,使我自己总结的,希望有用(description:
introduce how to use jrtplib,I summarized it myself,hope to be helpful:))
- 2005-09-16 16:58:31下载
- 积分:1
-
FlatColorCombo
一个自定义的COMBO box类的实现以及演示程序。(since the definition of a notebook category box on the realization of demo program.)
- 2006-08-03 23:39:26下载
- 积分:1
-
程序由C#语音编写,图形界面,功能为模拟五子棋游戏,程序能够实现人机对战...
程序由C#语音编写,图形界面,功能为模拟五子棋游戏,程序能够实现人机对战-Procedures by the C# Voice writing, graphical interface, the functional analog Gobang game, procedures to realize man-machine war
- 2022-01-24 16:51:59下载
- 积分:1
-
求一般矩阵(实数)的逆矩阵
求一般矩阵(实数)的逆矩阵-for general matrix (actual) of the inverse matrix
- 2022-06-15 09:37:59下载
- 积分:1
-
onvif协议测试程序
onvif协议测试程序,支持设备发现,云台控制,采用C+++编写,用GSOAP编译出来的CPP.适合视频开发初学者,也适合有一定开发经验的人参考。
- 2023-08-11 11:30:05下载
- 积分:1