搜索资源列表
LED
- #include <reg51.h> void delay_ms(unsigned short ms) { unsigned short i unsigned char j for(i=0 i<ms i++) { for(j=0 j<200 j++) for(j=0 j<102 j++) } }
LED
- #include <reg51.h> void delay_ms(unsigned short ms) { unsigned short i unsigned char j for(i=0 i<ms i++) { for(j=0 j<200 j++) for(j=0 j<102 j++) } } -# Include <reg51.
ourdev_243923
- u_reg.h" void Delay_MS(unsigned int ms) void main() { asm(" STM #0000h,CLKMD ") while(*CLKMD & 0x01 ) asm(" STM #40C7h,CLKMD ") //设置CPU运行频率=100M /* 40C7h:5*clkin =100M 30c7h:4*clkin =80M
pao
- 跑马灯程序,所用单片机为Atmega32,闪亮时间没有设定,可通过调节delay_ms()函数进行调节-Marquee program for the microcontroller of this procedure, the use of microcontroller Atmega32, lights flashing interval is not set.
Text4
- P1口做输入口,接八个拨码开关,以P0口做输出口,接八只发光二极管,(1)编写程序使发光二极管循环点亮。(2)读取开关状态,在二极管上显示出来。 1、根据要求设计接口电路的接线。 2、编写程序使发光二极管循环点亮,时间变化间隔0.5秒 3、编写程序读取开关状态,在二极管上显示出来。 - #include <reg51.h> #define LED P1 //宏定义,使用LED代
Sources
- 采用DS18B20和STM32F103RBT6编写的测温程序,每秒从USART1输出温度数据。采用3.5版固件库,自编DS18B20库文件,需要注意的是使用本库前需要写delay_us和delay_ms函数。电路上采用8M晶振,PA8为数据口,如有变化请修改stm32f10x_conf.h文件。-The temperature program DS18B20 and STM32F103RBT6-written per second fr
STM32-delay-lib-v1.00
- STM32延迟库函数,采用SysTick计时,包含delay_us、delay_ms功能,实测误差0.6us。-Delay functions of STM32 library, Using ysTick timer for timing. It includes delay_us and delay_ms function. The measured error is 0.6us according to the oscillosc
ADC
- stm32驱动4X4键盘扫描,用于键盘扫描-/******************************************************************************* * File Name : KeyScan * Descr iption : Serial print out the corresponding key value *******************
SmarHome
- 这是一个通用的STM32启动及控制代码集.它没有使用ST的库,完全是基于寄存器的操作.它包括三部分: 1,sys sys部分包含了STM32的系统级别的代码,包括:时钟配置,IO口输入输出管理,中断管理,待机模式设置,BKP操作,软复位,JTAG配置等. 2,usart usart部分包含了对串口1的初始化,用于串口调试,或者串口打印信息. 3,delay delay部分包含了2个基本的延时数,delay_u
mjpeg-player
- 本程序只供学习使用,未经作者许可,不得用于其它任何用途-int main(void) { Key_Init() LED_Init() LCD_Init() Touch_Init() COM1Init(115200) LCD_Clear(BLUE) LCD_String(20,20, Vido play! ,RED) delay_ms(500) AVI_play
Delay_MS
- 相比labview中的Vi控件要好,可以精确延时到毫秒。(Can be accurately delayed to milliseconds.)
ADC
- stm32F103 adc采样程序,包括初始化和配置等(u16 ADC_Get_aveg(u8 ch,u8 n) { u32 ad_sum = 0; u8 i; for(i=0;i<n;i++) { ad_sum += Get_val(ch); delay_ms(5); } return (ad_sum / n))