-
HART-Protocol
工业上采用的HART通信协议相关的资料,包含有HART命令、HART协议C语言源码。(HART communication protocol-related information used on industrial, including The HART command, HART protocol source code using C language .)
- 2014-02-24 10:36:00下载
- 积分:1
-
Remote-control-infrared-program
通过定时器在时间上合理的安排,快速准确的对红外遥控器进行操作,同时大大的减少了时间上的消耗,并将此工程封装,便于以后的直接调用(Called directly by a timer set at a reasonable time, the fast and accurate infrared remote control to operate, while greatly reducing the consumption of time, and to this engineering package to facilitate future)
- 2014-01-02 20:53:42下载
- 积分:1
-
STATCOM
采用载波移相技术和PR控制器的STATCOM仿真(Carrier phase shift technique H bridge cascade is simulated by STATCOM PR controller)
- 2014-11-26 10:24:22下载
- 积分:1
-
STM8_UART_TEXT
说明: 接收SI4463数据 并上传到电脑。同时发送一个确认代码给分机。(Receive SI4463 data and upload it to the computer.At the same time, send a confirmation code to the extension.)
- 2020-06-17 03:40:02下载
- 积分: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
-
DHT11
DHT11获取外界的温度和湿度,并通过串口发送显示两项数值(DHT11 for temperature and humidity of the outside world, and are displayed via a serial port to send two numerical values
)
- 2014-08-01 21:24:43下载
- 积分:1
-
CoapBlip
无线传感器网络tinyos仿真实例CoapBlip源代码文件(Wireless sensor network simulation example tinyos CoapBlip source code files)
- 2015-07-10 16:12:05下载
- 积分:1
-
STM32F407 开发EC20-8代码
说明: STM32F407 开发EC20代码,EC20建立多路SOCKT发数据_TCP(STM32F407 develops EC20 code, EC20 establishes multi-channel SOCKT to send data _TCP)
- 2019-04-25 09:08:39下载
- 积分:1
-
红外-STC51
说明: 使用STC51所带的红外接收模块实现红外功能,并且在1602上面有一个简单的交互。(The infrared function is implemented using the infrared receiver module of the STC51, and there is a simple interaction on the 1602.)
- 2020-06-18 16:40:02下载
- 积分:1
-
DS18B20peratureConversionSubroutine
DS18B20芯片的温度转换子程序精度为0.5(Temperature Conversion Subroutine)
- 2009-04-07 18:11:15下载
- 积分:1