TOOLSTICK C8051F931扩展板使用指南: ToolStick开发板是为工程师使用及学习C8051F单片机提供一个软硬件开发平台,并且支持IDE开发环境。ToolStick开发平台包括底板和扩展板两部分,其中底板通过USB接口连接PC,为MCU与PC通讯提供通道。扩展板上包含目标芯片及一些典型的应用电路(包括GPIO控制LEDs、电位器、一个普通按键、一个电容触摸按键及一些外引的I/O引脚)。 目录: 1.操作说明 2、扩展板组成 3、ToolStick的开发初衷 4、支持软件 5、ToolStick C8051F931扩展板数据日志演示程序 6.使用ToolStick F931扩展板的功能演示 7.附带的演示程序 8. C8051F931 子板原理图
标签: TOOLSTICK C8051F931 ToolStick C8051F
上传时间: 2016-06-18
上传用户:xyipie
压缩目录下的Test_USB_Test.exe是PC侧的应用程序,dsp5509_10MHz_clk.out、dsp5509_12MHz_clk.out、和dsp5509_16MHz_clk.out是分别针对5509时钟为10M、12M和16M的out文件。基于ccs2.2开发。 在ccs2.2中load针对自己硬件平台的.out文件,用USB线连接好5509与PC,运行.out,会提示检测到USB设备,指定driver目录下的驱动即可。 再运行Test_USB_Test.exe,其操作格式为Test_USB_Test.exe w 32 r 32 即从PC向dsp写入32个字符,再读取32个5509返回的字符,在dsp上将输入的字符做了简单的+1操作。
标签: Test_USB_Test exe 目录 应用程序
上传时间: 2016-06-29
上传用户:小草123
This code is described in "Computational Geometry in C" (Second Edition), Chapter 8. It is not written to be comprehensible without the explanation in that book. Prints out one arm configuration to reach given target. Assumes number of links >= 3. Input: nlinks Number of links L1 L2 ... Ln Link lengths x0 y0 target0 x1 x2 target1
标签: Computational described Geometry Chapter
上传时间: 2014-01-25
上传用户:yan2267246
看n2实例 #Create a simulator object set ns [new Simulator] #Define different colors for data flows #$ns color 1 Blue #$ns color 2 Red #Open the nam trace file set nf [open out-1.nam w] $ns namtrace-all $nf set f0 [open out0.tr w] set f1 [open out1.tr w] #Define a finish procedure proc finish {} { global ns nf $ns flush-trace #Close the trace file close $nf #Execute nam on the trace file exit 0 } #Create four nodes set n0 [$ns node] set n1 [$ns node] set n2 [$ns node] set n3 [$ns node] #Create links between the nodes $ns duplex-link $n0 $n2 1Mb 10ms
标签: simulator Simulator different Create
上传时间: 2016-07-02
上传用户:wfl_yy
NASM是一个为可移植性与模块化而设计的一个80x86的汇编器。它支持相当多的目标文件格式,包括Linux和 NetBSD/FreeBSD , a.out , ELF , COFF ,微软16位的 OBJ 和 Win32 。它还可以输出纯二进制文件。它的语法设计得相当的简洁易懂,和Intel语法相似但更简单。它支持 Pentium , P6 , MMX , 3DNow! , SSE and SSE2 指令集
上传时间: 2014-08-09
上传用户:Andy123456
本源码维MSP430F149控制IIC协议的AD芯片DAC5571,并再1602液晶上显示数据 MCU的P1.0、P1.1 端口与DAC5571 的SDA、SCK端口连接,通过在两个GPIO上模拟 I2C时序从而实现对DAC的操作。可以看到,DAC5571 的输出端Vout连接到了跳线座P7 的第 1 脚。如果用短路帽将跳线座J1 的 2 脚 和 3 脚连接,则DAC的输出直接驱动LED,可以通过LED亮度的变化直观地观察到 DAC输出电压值的变化;如果用短路帽将跳线座J1 的2 脚和1 脚连接,则可以用 MSP430 内置的ADC对DAC输出的电压进行采样转换,对ADC和DAC电路同时进行应用。
上传时间: 2016-07-04
上传用户:cuiyashuo
自己编写的,基于LPC2138的在uC/OS操作系统下的GPIO蜂鸣器试验,良好的验证了uC/OS操作系统的移植和运行。
标签: 编写
上传时间: 2013-12-04
上传用户:wang0123456789
package query public class LinkQuery { private Node front private Node vear public LinkQuery() { this.front=null this.vear=null } public void add(int i) { Node newNode=new Node(i) if(vear==null && front==null) { vear=newNode front=newNode return } vear.next=newNode vear=newNode } public int remove() { if(this.front==null) { System.out.println("队是空的,无法取") return -1 } int temp=this.front.data this.front=this.front.next if(this.front==null) { this.vear=null }
标签: private public Node LinkQuery
上传时间: 2016-07-08
上传用户:天诚24
Microsoft Visual Studio 2005 Unleashed is a deep dive into the Visual Studio 2005 tool. Specifically, it will provide you with solid guidance and education that will allow you to squeeze the ultimate productivity and use out of the Visual Studio 2005 development environment. This book folds in real-world development experience with detailed information about the IDE to make you more productive and ease transition from other development environments (including prior versions of Visual Studio). This book will also help you increase team collaboration and project visibility with Visual Studio Team Systems and it will give you straight, to-the-point answers to common developer questions about the IDE.
标签: Visual Studio 2005 Specifically
上传时间: 2016-07-08
上传用户:tuilp1a
最常用的嵌入式LINUX字符设备驱动:触摸屏和小键盘驱动。触摸屏使用SPI接口,小键盘使用GPIO口模拟。
上传时间: 2014-12-05
上传用户:zhangjinzj