ATMEGA32-16PC Atmel, ATMEGA32-16PC Datasheet - Page 91

IC AVR MCU 32K 16MHZ COM 40-DIP

ATMEGA32-16PC

Manufacturer Part Number
ATMEGA32-16PC
Description
IC AVR MCU 32K 16MHZ COM 40-DIP
Manufacturer
Atmel
Series
AVR® ATmegar
Datasheets

Specifications of ATMEGA32-16PC

Core Processor
AVR
Core Size
8-Bit
Speed
16MHz
Connectivity
I²C, SPI, UART/USART
Peripherals
Brown-out Detect/Reset, POR, PWM, WDT
Number Of I /o
32
Program Memory Size
32KB (16K x 16)
Program Memory Type
FLASH
Eeprom Size
1K x 8
Ram Size
2K x 8
Voltage - Supply (vcc/vdd)
4.5 V ~ 5.5 V
Data Converters
A/D 8x10b
Oscillator Type
Internal
Operating Temperature
0°C ~ 70°C
Package / Case
40-DIP (0.600", 15.24mm)
Lead Free Status / RoHS Status
Contains lead / RoHS non-compliant
Reusing the
Temporary High Byte
Register
Timer/Counter
Clock Sources
Counter Unit
2503Q–AVR–02/11
The following code examples show how to do an atomic write of the TCNT1 Register contents.
Writing any of the OCR1A/B or ICR1 Registers can be done by using the same principle.
Note:
The assembly code example requires that the r17:r16 register pair contains the value to be writ-
ten to TCNT1.
If writing to more than one 16-bit register where the high byte is the same for all registers written,
then the high byte only needs to be written once. However, note that the same rule of atomic
operation described previously also applies in this case.
The Timer/Counter can be clocked by an internal or an external clock source. The clock source
is selected by the Clock Select logic which is controlled by the Clock Select (CS12:0) bits
located in the Timer/Counter Control Register B (TCCR1B). For details on clock sources and
prescaler, see
The main part of the 16-bit Timer/Counter is the programmable 16-bit bi-directional counter unit.
Figure 41
Assembly Code Example
C Code Example
TIM16_WriteTCNT1:
void TIM16_WriteTCNT1 ( unsigned int i )
{
}
; Save global interrupt flag
in
; Disable interrupts
cli
; Set TCNT1 to r17:r16
out TCNT1H,r17
out TCNT1L,r16
; Restore global interrupt flag
out SREG,r18
ret
unsigned char sreg;
unsigned int i;
/* Save global interrupt flag */
sreg = SREG;
/* Disable interrupts */
_CLI();
/* Set TCNT1 to i */
TCNT1 = i;
/* Restore global interrupt flag */
SREG = sreg;
1. See
shows a block diagram of the counter and its surroundings.
r18,SREG
“Timer/Counter0 and Timer/Counter1 Prescalers” on page
“About Code Examples” on page
(1)
(1)
7.
ATmega32(L)
84.
91

Related parts for ATMEGA32-16PC