ATMEGA64-16AI Atmel, ATMEGA64-16AI Datasheet - Page 59

IC AVR MCU 64K 16MHZ IND 64-TQFP

ATMEGA64-16AI

Manufacturer Part Number
ATMEGA64-16AI
Description
IC AVR MCU 64K 16MHZ IND 64-TQFP
Manufacturer
Atmel
Series
AVR® ATmegar
Datasheets

Specifications of ATMEGA64-16AI

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
53
Program Memory Size
64KB (32K x 16)
Program Memory Type
FLASH
Eeprom Size
2K x 8
Ram Size
4K x 8
Voltage - Supply (vcc/vdd)
4.5 V ~ 5.5 V
Data Converters
A/D 8x10b
Oscillator Type
Internal
Operating Temperature
-40°C ~ 85°C
Package / Case
64-TQFP, 64-VQFP
Lead Free Status / RoHS Status
Contains lead / RoHS non-compliant

Available stocks

Company
Part Number
Manufacturer
Quantity
Price
Part Number:
ATMEGA64-16AI
Manufacturer:
Atmel
Quantity:
10 000
2490Q–AVR–06/10
The following code examples show one assembly and one C function for turning off the WDT.
The examples assume that interrupts are controlled (for example, by disabling interrupts glob-
ally) so that no interrupts will occur during execution of these functions.
Assembly Code Example
C Code Example
WDT_off:
void WDT_off(void)
{
}
; reset WDT
wdr
in r16, WDTCR
ldi r16, (1<<WDCE)|(1<<WDE)
; Write logical one to WDCE and WDE
ori
out
; Turn off WDT
ldi
out
ret
/* Reset WDT*/
_WDRC();
/* Write logical one to WDCE and WDE */
WDTCR |= (1<<WDCE) | (1<<WDE);
/* Turn off WDT */
WDTCR = 0x00;
r16, (1<<WDCE)|(1<<WDE)
WDTCR, r16
r16, (0<<WDE)
WDTCR, r16
ATmega64(L)
59

Related parts for ATMEGA64-16AI