要約
Maxim provides a simple solution to reduce the effects of switch ringing. These devices are applicable for applications with push-button panels, touch screen displays, and simple push-button devices. These devices also provide overvoltage and ESD protection. The MAX6816/MAX6817/MAX6818 integrates numerous functions into a single IC, thus eliminating numerousdiscrete components.
Switches can do some really odd things. Most engineers learn this dirty little secret soon after connecting a switch or a relay to a digital system. Switches don't make and break cleanly on the time scales of digital systems. Instead, a typical switch makes multiple transitions during the tens of milliseconds required to open or close, due to effects that include age, operating inertia, mechanical design, and the microscopic condition of the switch-contact surfaces. Commonly called "switch bounce," this behavior is an inescapable fact of life.
After connecting a standard switch to a digital counting circuit, you can observe several counts on opening and several counts on closing (Figures 1 and 2). This erratic action can wreak havoc on data, because the exact number of counts does not necessarily repeat in the long term. Switch bounce is not consistent from unit to unit, lot to lot, or even over the life of an individual switch. Membrane switches and some other types don't appear to bounce when new, but all mechanical switches bounce sometimes. Nothing can ensure that another switch of the same type will act the same way, or that a particular switch will remain bounce-free as it ages.
In addition to bounce, switches and digital systems have other annoying habits. Strange things happen, for example, when you run switch wiring in a noisy industrial environment. An open switch has high impedance by definition, so interfering signals have an easy load to work against. Any noise impulse that is capacitively or inductively coupled to the switch wiring can cause phantom switch closures.
Imagine a kind of specialized industrial computer called a programmable logic controller (PLC) that controls a motor through a hefty relay. A limit switch placed near the motor provides position feedback to a digital input on the PLC. When the PLC tells the motor to start, a surge of current flowing to the relay and the motor can couple to other conductors in the long wiring runs, causing ground bounce or a capacitively coupled spike in the digital input.
If not designed properly, the PLC can interpret this spike as a premature switch closure and shut down the operation. Similar things can happen when the PLC turns the load off, due to the effect of wiring capacitance, wiring inductance, and the inductive kick of the relay and the motor. If the PLC and its digital inputs are not designed properly, these spikes and transients can cause erroneous readings on the digital inputs.
The digital and analog inputs on equipment used in the home, the office, and industry are subject to the effects of overvoltage, voltage transients, and ESD strikes. Overvoltage is caused by improper wiring, miscellaneous fault conditions, and power-supply sequencing (in which one box with power off is connected to another with power on, even temporarily). Voltage transients are often associated with capacitively or inductively coupled spikes, as discussed above. ESD can strike a connector, an operator console, or a terminal strip during installation. Any of these transients can cause destruction if the system latches up. If not destructive, they can cause CPU resets, watchdog overflows, and other types of erratic operation.
System designers should be aware of these problems and the methods used to combat them. One solution for such interface problems is a new series of ICs. Available in low-cost easy-to-use configurations, the ICs (MAX6816/6817/6818 single/dual/octal switch debouncers) offer foolproof, software-free debouncing, along with protection against overvoltage and ESD. This article highlights the application of IC switch debouncers, while describing the classic methods for thwarting overvoltage, voltage/current spikes, switch bounce, and ESD.
Switch Bounce
If asked, most engineers would say that switches are debounced in software and that debouncing presents "no problem." Both assumptions are true if you pay proper attention to the details. Software debouncing takes care of the bounce, but it does not address the problems of overvoltage, ESD, or other transients.
Debouncing with resistors and capacitors is also possible. In general, you need a pullup resistor, a resistor and a capacitor in series, a resistor to the input of a Schmitt-trigger buffer, and (often) a diode to ensure that the capacitor charge doesn't force lots of current through the buffer's input-protection network during power-down. The resulting parts count can be unwieldy for multiple-input systems (Figure 3), so this approach will not be covered in any detail.
Debouncing by means of software is the primary method in use today. A good debouncing routine is actually real-time software that acts as a simple low-pass digital filter. Nonswitch digital inputs are often routed through debounce filters as well. That technique can eliminate short transients at the input by ensuring a stable state before reporting the input open or closed.
The pseudo code below illustrates a software-debounce routine for one input. It accommodates multiple inputs if you generalize the routine and use pointer-based variables, etc. Though a mediocre approach at best, this type of routine is often used in spite of the problems and the flaws discussed below.
Action | Comments |
1. Input timer: expired? | A timer bit is polled in the main routine. |
2. Return if no timer. | Go do something more useful. |
3. Get input bit. | The "bouncy" input. |
4. Count ++ if high, clear else. | Increment a counter if input is high. |
5. If count > 4 state = 1, else 0. | Check counter and clamp it at 4. |
6. Return input state. | State is debounced. |
This routine debounces switch closures, but it will accept an open as a legitimate state even when the switch is bouncing. Though unintentional, this asymmetrical operation might be acceptable in keypads and other systems that take action on closures but not on opens. For general-purpose inputs, you should debounce both edges.
Another shortcoming is that this routine assumes the switch is open if not closed, thereby ignoring a third state in which the switch is unstable (still bouncing). A better routine would therefore report the last nonbouncing state until the switch reaches a new debounced state. This action can also cause problems, however. In such cases, the software should recognize a third state of "changing."
Many debounce routines sample the input repeatedly, waiting for it to remain in the same state for a prearranged number of samples. If the switch changes state during that interval, the routine tests the new state for stability in the same way. This action can cause large delays that eat up a lot of CPU time. As an extreme case, a PLC with high frequency applied to one of its general-purpose input ports (whether inadvertent, on purpose, or due to failure) would completely hang the processor. A watchdog timer might bring back the processor, but the problem would recur indefinitely; this is not a robust design. Further, you need a lot of RAM and code to debounce a large industrial system with lots of inputs, such as a PLC or general-purpose input board. Each input requires a closed counter, an open counter, and 2 bits to define its state.
Transient and ESD Suppression
The standard prevention for ESD is a transient suppressor or MOV device at each external input. Quad and octal TransZorbs™, for example, are straightforward and relatively inexpensive devices that can reduce clutter and real-estate requirements, but care must be taken to avoid cross-coupling of fault currents. This approach is common in industrial and automotive systems, where engineers understand the peril of omitting such protection.
A good practice is to connect a 220Ω resistor in series with the VCC line for port input devices. A common CMOS input device like the octal 74HC244 or 74HC573, for example, draws very little current. Should it latch up, the 220Ω resistor limits the current and power dissipation to a safe level. Power cycling can still be necessary, though. In general, you should not connect the port pins of a microcontroller to the external inputs directly. Latchup is a problem, but radiated EMI is likely to be even worse.
Because a part cannot latch up unless sufficient current is injected into one of its pins, some designers believe that resistors in series with CMOS digital inputs prevent these problems. Indeed, the threshold for SCR latchup in modern CMOS ICs can exceed 50mA. This high current threshold (covered in the next section) actually protects against overvoltage to some extent, but it is not necessarily effective for ESD. A 15kV ESD strike can force significant currents through parasitic paths and around resistors, and it can force a large current even through 100KΩ.
Overvoltage Protection
Overvoltage protection enables a system to withstand continuous and longer-term-transient inputs that extend beyond the rails. As an example, an IC with no VCC applied has 24V from an external source applied to the inputs. Such applied voltage often "backdrives" the protection networks, forcing voltage onto the power rail inside a system. One effective countermeasure is a resistor in series with the input, acting against protection diodes tied to the rails. A zener diode across the VCC rails of the input port should also be considered. To ensure that the protection circuits won't fail under worst-case conditions, you should calculate the maximum power dissipation of this zener and the series input resistors.
MAX6816, MAX6817, and MAX6818 Switch Debouncers
Several years ago, Maxim engineers saw the need for a simple interface device capable of debouncing a switch while protecting it against ESD and overvoltage. Some customers were using the manual-reset input of µP-supervisory ICs like the MAX811 just to obtain the single-channel debouncer function in a SOT-23 package. Others were using ESD-protected RS-232 transceivers as general-purpose digital-input devices. Customers were attracted to the RS-232 ICs, because they could handle low-voltage transitions while withstanding high voltage and ESD. Putting these facts together, Maxim produced a line of switch debouncers that incorporate ESD protection and robust input features (Figures 4 and 5).
MAX6816 and MAX6817
The MAX6816 is a single-switch debouncer in a 4-pin SOT-23 package, and the MAX6817 is a dual-switch debouncer in a 6-pin SOT-23 package. They provide debounce logic and a digital filter, input overvoltage protection to ±25V, and ESD protection to ±15kV for harsh industrial environments. Operating on single-supply voltages in the range of 2.7V to 5.5V, they draw typical supply currents of only 6µA. They also provide undervoltage-lockout circuitry that ensures correct output states on power-up. Because the proprietary ESD-protection structure at each input includes an overvoltage clamping diode and a 63kΩ pullup resistor, these ICs provide a direct interface to the switch without external components. Their nominal debounce delay (40ms ± 20ms) masks the bounce produced by even the ugliest of switches (Figure 6).
MAX6818
The MAX6818 octal-switch debouncer is designed for data-bus interfacing (Figure 7). It monitors eight switches, providing a change-of-state output (Active-low CH )and three-stated data-bus output in addition to the debounce and input-protection features of the single and dual parts. In particular, its Active-low CH output greatly simplifies the polling and interrupting of µPs. Each time the system reads the data outputs (by driving Active-low EN low), the IC resets Active-low CH high. Active-low CH then goes low when any input changes state. The MAX6818 is pin-compatible with the 74HC573 and other standard, 20-pin octal logic devices. It handles multiple inputs with ease.
MAX6816, MAX6817, and MAX6818 switch debouncers solve multiple problems associated with the connection of digital systems to noisy, transient-prone, "bouncing" inputs. They make systems more robust and reliable by simplifying design, reducing CPU time and overhead, and replacing multiple passive components.