Operating Temperature Range ...........................-40°C to +85°C
Storage Temperature Range .............................-65°C to +150°C
Lead Temperature (soldering, 10s) .................................+300°C
Stresses beyond those listed under “Absolute Maximum Ratings” may cause permanent damage to the device. These are stress ratings only, and functional
operation of the device at these or any other conditions beyond those indicated in the operational sections of the specifications is not implied. Exposure to
absolute maximum rating conditions for extended periods may affect device reliability.
ELECTRICAL CHARACTERISTICS
(V
CC
= full range, T
A
= -40°C to +85°C, unless otherwise noted. Typical values are at T
A
= +25°C and V
CC
= 3V.) (Note 1)
PARAMETER
V
CC
Range
SYMBOL
CONDITIONS
T
A
= 0°C to +70°C
T
A
= -40°C to +85°C
I
CC
MAX632_ only, V
CC
= 3.0V for V
TH
≤
2.93V,
V
CC
= 3.2V for V
TH
> 2.93V, no load
V
CC
= 5.5V, no load
T
A
= +25°C
Reset Threshold
V
TH
Table 1
T
A
= -40°C to +85°C
Reset Threshold Tempco
V
CC
to Reset Delay
Reset Active Timeout Period
RESET
Output Voltage
(MAX6326/MAX6328/
MAX6346/MAX6348)
RESET
Output Voltage
(MAX6326/MAX6346)
I
SINK
= 1.6mA, V
CC
> 2.1V, reset asserted
V
OL
I
SINK
= 100µA, V
CC
≥
1.2V, reset asserted
I
SOURCE
= 500µA, V
CC
= 3.2V, MAX6326 only
V
OH
I
SOURCE
= 800µA, V
CC
= 4.5V, V
TH
≤
4.38V
I
SOURCE
= 800µA, V
CC
= V
TH(MAX)
, V
TH
≥
4.5V
V
OH
RESET Output Voltage
(MAX6327/MAX6347)
V
OL
I
SOURCE
= 500µA, V
CC
≥
2.1V, reset asserted
I
SOURCE
= 50µA, V
CC
≥
1.2V, reset asserted
I
SINK
= 1.2mA, V
CC
≥
3.2V, reset not asserted,
MAX6327 only
I
SINK
= 3.2mA, V
CC
≥
4.5V, reset not asserted,
V
TH
≤
4.38V
I
SINK
= 3.2mA, V
CC
= V
TH(MAX)
, V
TH
≥
4.5V
RESET Threshold
Hysteresis
Open-Drain
RESET
Output
Leakage Current
Note 1:
Overtemperature limits are guaranteed by design and not production tested.
After getting the development board, download the official demo package and develop on MDK5.0. First install the plug-in, then load the required compilation library based on GD32F350 in KEIL. Prelimin...
NSP430F2013 crystal oscillator problemEZ-430F2013 Why can it work without a crystal oscillator?If the internal crystal oscillator is not set, can the internal crystal oscillator work by itself?If it w...
How can we teach computers to understand our emotions : https://training.eeworld.com.cn/course/4683We're living in an increasingly digital world. Our lives are filled with devices, smart homes, and so...
This is the current output part of a controllable constant current source I made. If you don't connect the load R13, you can get a lot of current (directly short-circuit the load position with an amme...
Use the microcontroller to drive 128X64 to display Chinese characters. The program has been compiled, but I don't know why the Chinese characters cannot be displayed. Please give me some advice. Thank...
Nothing is impossible, only things you can't imagine. . . .A young person's growth is carried out with your support. . . . I hope I can apply for......
The global PV inverter market will shrink from $6.3 billion in 2017 to $3.7 billion in 2022 due to falling prices, according to GlobalData.
Global PV Inverter Market Value to Shrink to $3.7 Bil...[Details]
On April 19, it was reported that Alibaba DAMO Academy is developing a neural network chip, Ali-
NPU
, which is mainly used for
AI
reasoning calculations such as image and video analys...[Details]
For 80,000
ZTE
(000063.SZ) employees and more Chinese ICT (information and communication technology) industry practitioners, the news from across the ocean on the evening of April 16 kept t...[Details]
For STM32, there are two ways to reset the software: 1) Use the official software library The system reset function is directly provided in the stm32f10x_nvic.c file of the official software li...[Details]
In the actual project development process, we often need to get the running time of a section of code. The usual method is to use an oscilloscope to measure it. This blog post will use SysTick to acc...[Details]
Timing and protocol are two key points in digital system debugging, and they are also where logic analyzers can play their most valuable role. How can we use a logic analyzer to quickly complete wiri...[Details]
When designing a product, if the application environment's requirements for power isolation are not considered, the product will be unstable due to improper design, and even high voltage may damage t...[Details]
At present, in the world,
the construction of
smart cities
is in the process of gradually landing from concept, and technology giants and investment giants are important participants in this...[Details]
In mid-to-late 2016, a girl from Hubei came to Beijing alone, full of curiosity about
cloud computing
. The girl left the deepest impression on me was her lovely smile. She told me that if ...[Details]
12864 LCD parallel port driver is more commonly used, but considering that sometimes the IO port of the microcontroller or MCU is limited, the serial driver method can be used. The following is ...[Details]
/* Unfortunately, it cannot generate a standard 38kHz frequency square wave, there is a little error*/ #include reg51.h #define uchar unsigned char #define uint unsigned int sbit Waveout=P1^0; //P...[Details]
As shown in the figure, the circuit is required to count and display the number of times the button is pressed. When the button is pressed once, the count value increases by 1 (it is required to accu...[Details]
Try to design a subroutine, whose function is to rearrange the 6 single-byte positive integers in the internal RAM pointed to by (R0) in ascending order. ;========================================== ...[Details]
//Environment: winavr+avr studio char temp=0; ISR(TIMER1_COMPA_vect )//interrupt function { // user code here temp++; if (temp==10) temp=0; PORTA=temp; DDRA=0xff; } void ...[Details]