51单片机的源码实例
上传时间: 2013-12-26
上传用户:脚趾头
基于80C51单片机源码公开的Small RTOS 1.12.1版
上传时间: 2013-10-08
上传用户:ljj722
基于C51带温度,实时时钟的点阵显示仿真电路和源码
上传时间: 2013-12-14
上传用户:qb1993225
uCOS_II_2.52源码中文译注
上传时间: 2013-11-14
上传用户:13681659100
ucos 源码uCOS-II vv2.8源码。
上传时间: 2013-11-03
上传用户:zhouchang199
MG3500SoC是支持H.264高清编解码器的片上系统,内部集成一个嵌入式ARM926处理器,支持高清H.264编解码、MPEG鄄2解码和JPEG编解码。介绍了MG3500SoC的主要性能特点、引脚排列、主要接口功能及在DVR上的应用,以及MG3500SoC及其周围器件的硬件设计,提出了在设计中应注意的问题。 Abstract: The MG3500System-on-Chip(SoC)is high definition(HD)H.264codec,including ARM926-EJ processor,H.264encoder/decoder,MPEG2decoder and JPEG/MJPEG encoder/decoder.The features,pin assignments,interfaces and the typical application of MG3500in DVR are introduced in this paper.The application hardware circuit between the MG3500SoC and peripheral device are given,the questions which the syetem design needs to pay attention are explained.
上传时间: 2013-11-12
上传用户:elinuxzj
最强万年历源码(支持24节气、支持所有单片机、ARM)
上传时间: 2013-10-21
上传用户:bjgaofei
AT89C2051驱动步进电机的电路和源码:AT89C2051驱动步进电机的电路和源码 程序:stepper.c stepper.hex/* * STEPPER.C * sweeping stepper's rotor cw and cww 400 steps * Copyright (c) 1999 by W.Sirichote */#i nclude c:\mc5151io.h /* include i/o header file */ #i nclude c:\mc5151reg.hregister unsigned char j,flag1,temp; register unsigned int cw_n,ccw_n;unsigned char step[8]={0x80,0xc0,0x40,0x60,0x20,0x30,0x10,0x90} #define n 400/* flag1 mask byte 0x01 run cw() 0x02 run ccw() */main(){ flag1=0; serinit(9600); disable(); /* no need timer interrupt */ cw_n = n; /* initial step number for cw */ flag1 |=0x01; /* initial enable cw() */while(1){ { tick_wait(); /* wait for 10ms elapsed */energize(); /* round-robin execution the following tasks every 10ms */ cw(); ccw(); } }}cw(){ if((flag1&0x01)!=0) { cw_n--; /* decrement cw step number */ if (cw_n !=0) j++; /* if not zero increment index j */ else {flag1&=~0x01; /* disable cw() execution */ ccw_n = n; /* reload step number to ccw counter */ flag1 |=0x02; /* enable cww() execution */ } }
上传时间: 2013-11-21
上传用户:boyaboy
语音编解码芯片MT8965在ALU中的应用::MT8965是一种功能较强的语音编解码芯片,它采用( 律编码,可通过控制总线接收从处理器.发出的控制信号来写控制寄存器,从而控制驱动输出信号。文章介绍了MT8965的性能特点及其在ALU中的应用。
上传时间: 2013-10-10
上传用户:wfeel
FPGA_DIY拨码开关实验源码
上传时间: 2013-10-09
上传用户:liu123