-
STM32F103PDAC8552
基于 STM32 DAC0832 16位DAC (Based on STM32 DAC0832 16-bit DAC)
- 2021-01-17 15:28:45下载
- 积分:1
-
BMS
实现一个电池测试系统,用于对电池的充放电情况进行检测。(The realization of a battery test system for charging and discharging of the battery were detected.)
- 2013-07-10 18:37:41下载
- 积分:1
-
suming-up-numbers-of-leapyear
编写一段程序 统计从1000年到1999年之间闰年的个数 最后输出到屏幕上来(writing a program to sum up the numbers of leapyear between 1000 and 1999.Finally,showing the result on the screen.)
- 2015-01-02 21:47:35下载
- 积分:1
-
俄罗斯方块游戏
利用STM32F103ZET6单片机编写俄罗斯方块游戏(Using STM32 to write Tetris game)
- 2020-07-01 15:20:02下载
- 积分:1
-
lesson09code
单片机实验:自动变速的跑马灯,keic编写,(Single-chip experiments: automatic transmission of the Marquee, keic prepared)
- 2008-06-13 14:32:36下载
- 积分:1
-
keilc51.jsp
KeilC uVision3,最新的keil C编程软件,可以编写51单片机的程序(keilC或汇编语言)(KeilC uVision3, the latest keil C programming software, you can write 51 MCU programs (keilC or assembly language))
- 2010-01-18 14:22:31下载
- 积分:1
-
1602
十分详细的介绍了1602的功能和图片,能够让初学者容易掌握(Very detailed introduction to the 1602 features and pictures, so beginners can easily grasp)
- 2011-07-04 21:59:50下载
- 积分: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
-
TCD1200
用C51语言编程,实现了单片机AT89C51产生线阵CCD(TCD1200)驱动所需的时序。希望对大家有用。(With C51 language programming, microcontroller AT89C51 produce linear CCD (TCD1200) drive required timing. I hope useful.)
- 2021-02-23 08:39:40下载
- 积分:1
-
cdrom.tar
this code is cdrom linux code
- 2020-06-24 17:20:01下载
- 积分:1