-
C8051Fxxx-SOC-microcomputer
学习C8051系列单片机的必备书籍,十分好用(Learn C8051 Series MCU essential books, very easy to use)
- 2013-10-07 17:09:53下载
- 积分:1
-
HJYJXZ.c
用c语言实现的龙格库塔算法和阿当姆斯算法。是学习计算方法的入门级程序实例。(Using c language realize the Runge-Kutta algorithm and the Arab-Israeli Adams algorithm. Calculation method is to study the entry-level procedures.)
- 2007-07-28 10:11:33下载
- 积分:1
-
SDP36KonChipPFatFs
STM32 模拟的U盘包含两个盘符,一个是SPI读取TF卡,另一个是36K片上Flash,挂载了Fatfs(STM32 USB2.0 massstorage example)
- 2014-09-17 08:32:56下载
- 积分:1
-
SN8F5701S
使用SONIX的IC來驅動PWM功能、T0T1的計數器(Using SONIX IC to drive PWM function and T0T1 counter)
- 2019-03-09 16:39:41下载
- 积分: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
-
模块 颜色传感器TCS230颜色识别传感器
TCS3200颜色测试,读取RGB值,LCD1602显示R,G,B值(TCS3200 color test, read RGB value, LCD1602 shows R, G, B value.)
- 2020-06-20 22:00:01下载
- 积分:1
-
0.96OLED显示屏_STM32系列_SPI_例程
基于OLED STM32F103 SPI基本驱动程序(Based on OLED STM32F103 SPI basic driver)
- 2020-06-15 22:23:55下载
- 积分:1
-
OLED 模块 使用说明
说明: OLED 屏幕的中文参考手册,详细的记录了OLED 的所有信息,包含了基本的使用方法,对新手十分适合(OLED screen Chinese reference manual, detailed records of all the information of OLED, including the basic use of new novice is very suitable.)
- 2020-06-19 14:40:01下载
- 积分:1
-
两轮平衡车速度闭环控制
说明: 两轮平衡车中通过速度环和直立环的串级环实现小车平衡与遥控(Balancing and remote control of two-wheeled balancing car by cascade ring of speed ring and vertical ring)
- 2020-06-18 05:40:01下载
- 积分:1
-
ICETEK-F28335-A
瑞泰创新的ICE-F28335—A评估板配套说明书,详细讲解了开发板硬件组成,详细分析了外设例程,便于快速上手,减少开发周期和难度,入门必选!(Skandia innovative ICE-F28335-A evaluation board manual gave a detailed hardware development board, a detailed analysis of the peripheral routines, easy to get started quickly, reducing development cycles and the difficulty of entry will be selected!)
- 2010-07-02 11:27:11下载
- 积分:1