Sleep modes, Idle mode, Attiny15l – Rainbow Electronics ATtiny15L User Manual

Page 23

Advertising
background image

23

ATtiny15L

1187E–AVR–06/02

• Bits 4, 3 – SM1, SM0: Sleep Mode Select Bits 1 and 0

These bits select between the three available sleep modes, as shown in Table 7.

For details, refer to “Sleep Modes” below.

• Bit 2 – Res: Reserved Bit

This bit is a reserved bit in the ATtiny15L and always reads as zero.

• Bits 1, 0 – ISC01, ISC00: Interrupt Sense Control 0 Bit 1 and Bit 0

The External Interrupt 0 is activated by the external pin INT0 if the SREG I-flag and the
corresponding interrupt mask is set (one). The activity on the external INT0 pin that acti-
vates the interrupt is defined in Table 8:

Note:

1. When changing the ISC10/ISC00 bits, INT0 must be disabled by clearing its Interrupt

Enable bit in the GIMSK Register. Otherwise an interrupt can occur when the bits are
changed.

Sleep Modes

To enter any of the three sleep modes, the SE bit in MCUCR must be set (one) and a
SLEEP instruction must be executed. The SM1 and SM0 bits in the MCUCR Register
select which sleep mode (Idle, ADC Noise Reduction or Power-down) will be activated
by the SLEEP instruction (see Table 7). If an enabled interrupt occurs while the MCU is
in a sleep mode, the MCU wakes up. The MCU is then halted for four cycles, executes
the interrupt routine and resumes execution from the instruction following SLEEP. On
wake-up from Power-down mode on pin change, two instruction cycles are executed
before the Pin Change Interrupt Flag is updated. The contents of the Register File,
SRAM, and I/O memory are unaltered when the device wakes up from sleep. If a reset
occurs during sleep mode, the MCU wakes up and executes from the Reset Vector.

Idle Mode

When the SM1/SM0 bits are “00”, the SLEEP instruction forces the MCU into the Idle
mode, stopping the CPU but allowing the ADC, Analog Comparator, Timer/Counters,
Watchdog and the Interrupt system to continue operating. This enables the MCU to
wake-up from external triggered interrupts as well as internal ones like the Timer Over-
flow Interrupt and Watchdog Reset. If the ADC is enabled, a conversion starts
automatically when this mode is entered. If wake-up from the Analog Comparator inter-
rupt is not required, the Analog Comparator can be powered down by setting the ADC-
bit in the Analog Comparator Control and Status Register (ACSR). This will reduce
power consumption in Idle mode.

Table 7. Sleep Modes

SM1

SM0

Sleep Mode

0

0

Idle mode

0

1

ADC Noise Reduction mode

1

0

Power-down mode

1

1

Reserved

Table 8. Interrupt 0 Sense Control

(1)

ISC01

ISC00

Description

0

0

The low level of INT0 generates an interrupt request.

0

1

Any change on INT0 generates an interrupt request

1

0

The falling edge of INT0 generates an interrupt request.

1

1

The rising edge of INT0 generates an interrupt request.

Advertising