-
serialcomm-master
Serial Communication
- 2015-06-18 16:34:58下载
- 积分:1
-
PT2314AUDIO
基于51单片机的PT2314音频功放程序,可实现MIC和音频输入切换及音量音调控制,并用5110显示(Based on 51 single-chip audio amplifier PT2314 program can achieve MIC and audio input switching and volume tone control and display with 5110)
- 2014-07-29 11:04:11下载
- 积分:1
-
NETStart-Apps.tar
ARM7-S3C4510B 的源代码程序(ARM7- S3C4510B source code procedures)
- 2007-05-16 11:27:40下载
- 积分:1
-
i2c
实现了tm4c1294的硬件i2c通信,很方便(The hardware I2C communication of tm4c1294 is realized)
- 2020-06-19 02:20:01下载
- 积分: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
-
uClinux-STM32
stm32移植uclinux的平台搭建教程(STM32 UCLINUX)
- 2014-08-18 10:53:43下载
- 积分:1
-
TEST
STC12C/LE54xx系列单片机SPI(单主单从)(中断方式)例程,官方C语言例程(STC12C/LE54xx Series MCU SPI (single single from) (interrupt) routines, the official C language routines)
- 2020-10-26 12:09:59下载
- 积分:1
-
refresh
F5 refresh programing tool
- 2014-03-31 08:56:52下载
- 积分:1
-
pwma
利用DSPTMS320LF2407产生PWM波,其输出波形为方波(Produced by DSPTMS320LF2407 PWM wave, the output waveform is square wave)
- 2011-06-02 10:31:41下载
- 积分:1
-
dosing_machine
实现高精度重量配料。只需要一个传感器,就能进行连续配料。(High precision weight ingredients. Only need one sensor, can continuous ingredients.)
- 2015-06-09 18:30:03下载
- 积分:1