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