This program is used to measure the temperature sensor on an F330 device. It uses 1-point calibration and stores the offset value in FLASH memory. The program outputs temperature values in 100ths of a degree Celsius with UART.
标签: temperature calibrati program measure
上传时间: 2014-01-19
上传用户:啊飒飒大师的
Precision Analog-to-Digital Converter (ADC) and Digital-to-Analog Converters (DACs) with 8051 Microcontroller and Flash Memory
标签: Analog-to-Digital Digital-to-Analog Converters Precision
上传时间: 2016-06-15
上传用户:asasasas
C++STL STL(Standard Template Library,标准模板库)是惠普实验室开发的一系列软件的统称。它是由Alexander Stepanov、Meng Lee和David R Musser在惠普实验室工作时所开发出来的。现在虽说它主要出现在C++中,但在被引入C++之前该技术就已经存在了很长的一段时间。 STL的代码从广义上讲分为三类:algorithm(算法)、container(容器)和iterator(迭代器),几乎所有的代码都采用了模板类和模版函数的方式,这相比于传统的由函数和类组成的库来说提供了更好的代码重用机会。在C++标准中,STL被组织为下面的13个头文件:<algorithm>、<deque>、<functional>、<iterator>、<vector>、<list>、<map>、<memory>、<numeric>、<queue>、<set>、<stack>和<utility>。以下笔者就简单介绍一下STL各个部分的主要特点。
标签: STL Standard Template Library
上传时间: 2016-06-20
上传用户:cylnpy
很好的一本工具书,提供了C/C++函数查询,分为以下几个方面阐述,预处理命令、关键字、标准C的I/O,String,Charactor,Math,Time,Data,Memory,以及C++的I/O,String,及标准模版类。推荐。
标签:
上传时间: 2013-12-04
上传用户:huql11633
16位cpu设计VHDL源码,其中包括alu,clock,memory等部分的设计
上传时间: 2016-06-30
上传用户:saharawalker
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
先进的发动机管理系统--ME7-Motronic ME7系统是目前国内采用的德国BOSCH公司生产的Motronic系列发动机管理系统(Engine Management System 简称EMS)的最先进的一种,与之前的M1和M3系统的最大不同在于ME7系统的控制策略是基于扭矩控制的。 ME7系统的电控单元(EMS ECU)采用了两片高性能CPU,大容量的闪存(Flash Memory),在提高系统运行处理能力和程序、匹配数据升级方面有明显的提高。 电控单元(EMS ECU)中的CPU还集成了CAN总线控制器,与车内其它电子控制系统组成了CAN总线网络,进一步提高了系统性能,并同时也为诊断和维修提供了方便。 此外,ME7系统集成了众多先进的传感器和执行器,可以更加准确、可靠地测量和执行动作,所有这些都为提高整个汽车的综合性能奠定了坚实的基础。
标签: Motronic Management Engine System
上传时间: 2016-07-03
上传用户:xiaoyunyun
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
三星公司官方 GIVEIO.SYS源代码下载。 In windows NT/2000/XP, any application can’t access the I/O such as the parallel port. So, GIVEIO.SYS enables SJF.exe to access the parallel port without any memory fault. In windows 95/98, GIVEIO.SYS isn’t needed.
标签: application the windows GIVEIO
上传时间: 2014-01-11
上传用户:yd19890720