English
Language : 

PIC16F684T-I Datasheet, PDF (36/192 Pages) Microchip Technology – 14-Pin, Flash-Based 8-Bit CMOS Microcontrollers
PIC16F684
4.2.4 ULTRA LOW-POWER WAKE-UP
The Ultra Low-Power Wake-Up (ULPWU) on RA0
allows a slow falling voltage to generate an
interrupt-on-change on RA0 without excess current
consumption. The mode is selected by setting the
ULPWUE bit of the PCON register. This enables a small
current sink which can be used to discharge a capacitor
on RA0.
To use this feature, the RA0 pin is first configured to output
‘1’ to charge the capacitor. Then interrupt-on-change for
RA0 is enabled, and RA0 is configured as an input. The
ULPWUE bit is set to begin the discharge and a SLEEP
instruction is performed. When the voltage on RA0 drops
below VIL, the device will wake-up and execute the next
instruction. If the GIE bit of the INTCON register is set, the
device will call the interrupt service routine (0004h). See
Section 4.2.3
“Interrupt-on-Change”
and
Section 12.4.3 “PORTA Interrupt-on-Change” for
more information.
This feature provides a low-power technique for
periodically waking up the device from Sleep. The
time-out is dependent on the discharge time of the RC
circuit on RA0. See Example 4-2 for initializing the Ultra
Low-Power Wake-Up module.
The series resistor provides overcurrent protection for
the RA0 pin and can allow for software calibration of
the time-out (see Figure 4-1). A timer can be used to
measure the charge time and discharge time of the
capacitor. The charge time can then be adjusted to
provide the desired interrupt delay. This technique will
compensate for the affects of temperature, voltage and
component accuracy. The Ultra Low-Power Wake-Up
peripheral can also be configured as a simple
Programmable Low Voltage Detect or temperature
sensor.
Note:
For more information, refer to AN879,
“Using the Microchip Ultra Low-Power
Wake-Up Module” Application Note
(DS00879).
EXAMPLE 4-2:
ULTRA LOW-POWER
WAKE-UP INITIALIZATION
BANKSEL CMCON0
MOVLW H’7’
MOVWF CMCON0
BANKSEL ANSEL
BCF
ANSEL,0
BCF
TRISA,0
BANKSEL PORTA
BSF
PORTA,0
CALL CapDelay
BANKSEL PCON
BSF
PCON,ULPWUE
BSF
IOCA,0
BSF
TRISA,0
MOVLW B’10001000’
MOVWF INTCON
SLEEP
;
;Turn off
;comparators
;
;RA0 to digital I/O
;Output high to
;
;charge capacitor
;
;
;Enable ULP Wake-up
;Select RA0 IOC
;RA0 to input
;Enable interrupt
; and clear flag
;Wait for IOC
DS41202F-page 34
© 2007 Microchip Technology Inc.