-
Automobile electronic systems place high demands ontoday’s DC/DC converters. They must be able to preciselyregulate an output voltage in the face of wide temperatureand input voltage ranges—including load DUMP transientsin excess of 60V and cold crank voltage drops to 4V. Theconverter must also be able to minimize battery drain inalways-on systems by maintaining high effi ciency over abroad load current range. Similar demands are made bymany 48V nonisolated telecom applications, 40V FireWireperipherals and battery-powered applications with autoplug adaptors. The LT3437’s best in classperformancemeets all of these requirements in a small thermallyenhanced 3mm × 3mm DFN package.
標簽:
378
DN
低靜態電流
單片式
上傳時間:
2013-10-15
上傳用戶:stampede
-
The voltage range of Linear Technology’s PowerPath® circuitscan be easily extended with just a few components, thusallowing them to meet the needs of virtually all applications.This application note presents solutions for circuits thatmust withstand large negative voltages, a reverse adapterinput for example, and circuits that must withstand largepositive inputs, such as automotive load-DUMP.
標簽:
PowerPath
汽車
工業應用
電路
上傳時間:
2013-10-21
上傳用戶:幾何公差
-
Kismet is an 802.11b network sniffer and network dissector. It is capable of sniffing using most wireless cards, automatic network IP block detection via UDP, ARP, and DHCP packets, Cisco equipment lists via Cisco Discovery Protocol, weak cryptographic packet logging, and Ethereal and tcpDUMP compatible packet DUMP files. It also includes the ability to plot detected networks and estimated network ranges on downloaded maps or user supplied image files.
Kismet是一個針對IEEE802.11b無線局域網的嗅探和包分析器,支持大多數無線網卡,支持自動檢測UDP、ARP和DHCP的數據包,支持通過CDP協議檢測思科網絡設備,支持加密數據包記錄,采用與Ethereal和TcpDUMP兼容的的數據包記錄文件,支持通過用戶提供地圖來檢測和評估無線網絡范圍。
標簽:
network
dissector
sniffing
capable
上傳時間:
2014-11-26
上傳用戶:wweqas
-
This is an example how one could hide a process on Windows based
operation systems from task viewers like ProcDUMP (G-RoM, Lorian
& Stone) or ProcessExplorer (SysInternals).
It could e.g. be used as some kind of DUMP protection.
The way to get this done is very different on NT and 9x machines.
標簽:
operation
Windows
example
process
上傳時間:
2013-12-17
上傳用戶:wang0123456789
-
dvbsnoop is a DVB/MPEG stream analyzer program.
The program can be used to sniff, monitor, debug, DUMP
or view DVB/MPEG/DSM-CC/MHP stream information (digital
television or data broadcasts) sent via satellite, cable
or terrestrial.
標簽:
program
dvbsnoop
analyzer
monitor
上傳時間:
2013-12-14
上傳用戶:zhangyi99104144
-
Windows下讀寫硬件的工具.
RW - Read & Write utility, for hardware engineers, firmware (BIOS) engineers, driver developers, QA engineers, performance test engineers, diagnostic engineers, etc., This utility access almost all the computer hardware, including PCI (PCI Express), PCI Index/Data, Memory, Memory Index/Data, I/O Space, I/O Index/Data, Super I/O, Clock Generator, DIMM SPD, SMBus Device, CPU MSR Registers, ATA/ATAPI Identify Data, ACPI Tables DUMP (include AML decode), Embedded Controller, USB Information and LPT Remote Access. And also an Command Window is provided to access hardware manually.
標簽:
engineers
firmware
hardware
Windows
上傳時間:
2015-07-01
上傳用戶:xc216
-
RW - Read & Write utility, for hardware engineers, firmware (BIOS) engineers, driver developers, QA engineers, performance test engineers, diagnostic engineers, etc., This utility access almost all the computer hardware, including PCI (PCI Express), PCI Index/Data, Memory, Memory Index/Data, I/O Space, I/O Index/Data, Super I/O, Clock Generator, DIMM SPD, SMBus Device, CPU MSR Registers, ATA/ATAPI Identify Data, ACPI Tables DUMP (include AML decode), Embedded Controller, USB Information and LPT Remote Access. And also an Command Window is provided to access hardware manually.
Website1: http://rw.net-forces.com/
Website2: http://home.kimo.com.tw/ckimchan.tw/
Website3: http://jacky5488.myweb.hinet.net/
For best view, please change the screen resolution to 1024 x 768 (or above) pixels.
標簽:
engineers
developers
firmware
hardware
上傳時間:
2013-12-22
上傳用戶:王楚楚
-
DVD,一個MTK串口數據 DUMP工具的源碼,可以自己用串口來讀取/控制MTK
標簽:
DVD
上傳時間:
2013-12-22
上傳用戶:fredguo
-
ATViewer is a component for Delphi/C++Builder, which allows to view files of various types. There is no edit possibility, just quick view - so it s useful to implement "View file" feature in your Delphi/C++Builder application.
The following view modes are implemented:
Text, Binary, Hex, Unicode: all files, of unlimited size. Plain file DUMP is shown. Used ATBinHex component: only visible part of file is loaded into memory. Modes are suitable for huge files and files of unknown type.
RTF/UTF-8: RTF and UTF-8 encoded texts. File is shown using RichEdit control.
Image: all general image formats: BMP JPG ICO GIF PNG... File is shown using ATImageBox component.
Multimedia: all file types supported by MS Windows Media Player: AVI MPEG WMV MP3... File is shown using WMP ActiveX control.
Internet: all file types supported by MS Internet Explorer: HTML XML DOC XLS... File is shown using MSIE ActiveX control.
Plugins: all files supported by Total Commander Lister plugins.
標簽:
component
ATViewer
Builder
various
上傳時間:
2013-12-24
上傳用戶:小鵬
-
C++名家精華.chm
我們用早期的C++語言編程。工作的第二天中午,厭煩了讀職工手冊,于是我寫了一個工具類,里面包含一個原始指針作為成員變量:
#include "xStruct.h" // definition of struct X
class xWrapper
{
X* xItem
public:
xWrapper() : xItem(new X) { }
~xWrapper() { delete xItem }
void DUMP() { /* DUMPs xItem to cout */ }
}
當然了,使用這個類的程序由于內存問題總是時不時的崩潰,因為我違反三個重要設計原則之一:任何時候,只要你提供了析構函數、拷貝構造函數或賦值運算符中的一個,你通常需要三個都提供。([1]) “所以,”我自言自語道,“我必須自己處理拷貝和賦值問題。簡單地...auto_ptr有拷貝構造函數和賦值運算符,我可以拿過來用一下。”(你知道早期C++程序庫中的auto_ptr,是嗎?)
標簽:
chm
家
語言編程
上傳時間:
2013-12-28
上傳用戶:Amygdala