电子工程世界电子工程世界电子工程世界

关键词

搜索

型号

搜索

MAX6867UK20D1S-T

产品描述Supervisory Circuits
产品类别电源/电源管理    电源电路   
文件大小485KB,共17页
制造商Maxim(美信半导体)
官网地址https://www.maximintegrated.com/en.html
下载文档 详细参数 全文预览

MAX6867UK20D1S-T在线购买

供应商 器件名称 价格 最低购买 库存  
MAX6867UK20D1S-T - - 点击查看 点击购买

MAX6867UK20D1S-T概述

Supervisory Circuits

MAX6867UK20D1S-T规格参数

参数名称属性值
是否无铅含铅
是否Rohs认证不符合
厂商名称Maxim(美信半导体)
零件包装代码SOIC
包装说明MO-178AA, SOT-23, 5 PIN
针数5
Reach Compliance Codenot_compliant
ECCN代码EAR99
可调阈值NO
模拟集成电路 - 其他类型POWER SUPPLY MANAGEMENT CIRCUIT
JESD-30 代码R-PDSO-G5
JESD-609代码e0
长度2.9 mm
信道数量1
功能数量1
端子数量5
最高工作温度85 °C
最低工作温度-40 °C
封装主体材料PLASTIC/EPOXY
封装代码LSSOP
封装等效代码TSOP5/6,.11,37
封装形状RECTANGULAR
封装形式SMALL OUTLINE, LOW PROFILE, SHRINK PITCH
峰值回流温度(摄氏度)240
电源1.2/5.5 V
认证状态Not Qualified
座面最大高度1.45 mm
最大供电电压 (Vsup)5.5 V
最小供电电压 (Vsup)1.2 V
标称供电电压 (Vsup)2.5 V
表面贴装YES
技术BICMOS
温度等级INDUSTRIAL
端子面层Tin/Lead (Sn/Pb)
端子形式GULL WING
端子节距0.95 mm
端子位置DUAL
处于峰值回流温度下的最长时间NOT SPECIFIED
宽度1.625 mm

文档预览

下载PDF文档
19-3139; Rev 4; 12/05
Nanopower µP Supervisory Circuits with
Manual Reset and Watchdog Timer
General Description
The MAX6854/MAX6855/MAX6856/MAX6858/MAX6860–
MAX6869 ultra-low-current (170nA, typ) microprocessor
(µP) supervisory circuits combine voltage monitoring,
watchdog timer, and manual reset input functions in a 5-
pin SOT23 package. These devices assert a reset signal
whenever the monitored voltage drops below the factory-
trimmed reset threshold voltage, manual reset is assert-
ed, or the watchdog timer expires. The reset output
remains asserted for a minimum timeout period after V
CC
rises above the reset threshold and manual reset is
deasserted. Factory-trimmed reset threshold voltages
are offered from +1.575V to +4.625V in approximately
100mV increments (see the
Threshold Suffix Guide).
Each device is offered with six minimum reset timeout
options, ranging from 10ms to 1200ms.
The MAX6854/MAX6855/MAX6856/MAX6858/MAX6860–
MAX6869 are offered in a variety of configurations (see
the
Selector Guide).
The MAX6854/MAX6855/MAX6856/
MAX6861–MAX6869 provide a manual reset input,
MR.
The MAX6864–MAX6869 offer a watchdog timer that
monitors activity at the WDI input to prevent code execu-
tion errors. The MAX6864–MAX6869 offer watchdog
timeout options of 3.3s or 209s (typ). The MAX6861/
MAX6862/MAX6863 feature a pin-selectable reset delay
period of 10ms or 150ms (min). Push-pull active-low,
push-pull active-high, and open-drain active-low reset
outputs are available.
Features
Ultra-Low 170nA (typ) Supply Current
Reset Thresholds from +1.575V to +4.625V in
Approximately 100mV Increments
Six Minimum Reset Timeout Period Options from
10ms to 1200ms
Manual Reset Option
Watchdog Timer Option
Pin-Selectable 10ms/150ms (min) Reset Timeout
Period (MAX6861/MAX6862/MAX6863)
Immune to Short V
CC
Transients
Guaranteed Reset Valid to V
CC
= +1.1V
Three Reset Output Options:
Push-Pull
RESET
Push-Pull RESET
Open-Drain
RESET
No External Components
Small 5-Pin SOT23 Package
Pin Compatible to the TPS3836/TPS3837/TPS3838
(MAX6861/MAX6862/MAX6863)
MAX6854/MAX6855/MAX6856/MAX6858/MAX6860–MAX6869
Ordering Information
PART
MAX6854UK_
_D_-T
TEMP RANGE
-40°C to +85°C
PIN-PACKAGE
5 SOT23-5
Applications
Portable/Battery-Powered Equipment
PDAs/Cell Phones
MP3 Players/Pagers
Glucose Monitors/Patient Monitors
MAX6855UK_
_D_-T
-40°C to +85°C 5 SOT23-5
Insert reset threshold suffix (see Table 2, Threshold Suffix
Guide) after UK. Insert the number corresponding to the
desired reset timeout period (see Table 4, Reset Timeout
Period) after D.
Typical Operating Circuit
V
CC
0.1µF
V
CC
RESET
RESET
V
CC
Note:
Sample stock is generally held on standard versions
only (see Table 5, Standard Versions Table). Standard versions
have an order increment of 2500 pieces. Nonstandard versions
have an order increment of 10,000 pieces. Contact factory for
availability of nonstandard versions.
Devices are available in both leaded and lead-free packaging.
Specify lead-free by replacing “-T” with “+T” when ordering.
MAX6864
MAX6867
MANUAL
RESET
MR
GND
WDI
I/O
µP
Pin Configurations and Selector Guide appear at end of
data sheet.
Ordering Information continued at end of data sheet.
GND
________________________________________________________________
Maxim Integrated Products
1
For pricing, delivery, and ordering information, please contact Maxim/Dallas Direct! at
1-888-629-4642, or visit Maxim’s website at www.maxim-ic.com.
求助(基于TM4C MCU的监控系统设计)
就是用OV7670,TM4C,LCD输出,SD卡储存构成数字摄像系统,系统功能除了复位外,还设定两个按键,一个按键可以使显示暂停,另一个按键可以将一帧图像储存在SD卡上。这是我的毕设,有没有大神有 ......
以求好合 微控制器 MCU
关于MISRA:规则17.4 ,只允许用数组索引做指针运算
规则17.4 只允许用数组索引做指针运算 按照如下方式定义数组和指针: uint8_t a; unit8_t *p; p = a; 则*(p+5) = 0是不允许的,而p = 0 则是允许的,尽管就这段程序而言,二者等价。 以 ......
kjpioo 嵌入式系统
STM32RTC
voidRTC_Configuration(void){u32delay;/*EnablePWRandBKPclocks*/RCC_APB1PeriphClockCmd(RCC_APB1Periph_PWR|RCC_APB1Periph_BKP,ENABLE);/*AllowaccesstoBKPDomain*/PWR_BackupAccessCm ......
tomlinson stm32/stm8
科技万有瘾力-中国创客星星之火如何燎原
近日,一台Apple I被拍出671400美元天价。据传它是世上仅存的能够运行的六台Apple I之一。 118504 拍卖商认为,Apple I 的价值远超过它的使用价值 1976年,苹果联合创始人沃兹在乔布斯家 ......
yaoniming3k 机器人开发
转一个据说是女工程师写的爱情函数,大家姑且看看吧。
result love(boy, girl)   {     if ( boy.有房() and boy.有车() )     {       boy.set(nothing);       return girl.嫁给(boy);    ......
daijun 聊聊、笑笑、闹闹
请大家推荐VOH<2V的PLL芯片
RT,希望输出VOH小于2V,倍频能力5倍,ICS502很接近了,但是VOH=2.4V,还是不满足要求,请教大家,帮我推荐一歌芯片,谢谢...
fewcome 嵌入式系统

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

 
机器人开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 大学堂 TI培训 Datasheet 电子工程 索引文件: 2554  165  618  2862  1097  47  5  48  30  49 

器件索引   0 1 2 3 4 5 6 7 8 9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2026 EEWORLD.com.cn, Inc. All rights reserved