ATMEGA6490P-AU Atmel, ATMEGA6490P-AU Datasheet - Page 55

IC MCU AVR 64K FLASH 100TQFP

ATMEGA6490P-AU

Manufacturer Part Number
ATMEGA6490P-AU
Description
IC MCU AVR 64K FLASH 100TQFP
Manufacturer
Atmel
Series
AVR® ATmegar
Datasheets

Specifications of ATMEGA6490P-AU

Core Processor
AVR
Core Size
8-Bit
Speed
20MHz
Connectivity
SPI, UART/USART, USI
Peripherals
Brown-out Detect/Reset, LCD, POR, PWM, WDT
Number Of I /o
69
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)
1.8 V ~ 5.5 V
Data Converters
A/D 8x10b
Oscillator Type
Internal
Operating Temperature
-40°C ~ 85°C
Package / Case
100-TFQFP
Lead Free Status / RoHS Status
Lead free / RoHS Compliant

Available stocks

Company
Part Number
Manufacturer
Quantity
Price
Part Number:
ATMEGA6490P-AU
Manufacturer:
Atmel
Quantity:
779
Part Number:
ATMEGA6490P-AU
Manufacturer:
Atmel
Quantity:
10 000
Part Number:
ATMEGA6490P-AUR
Manufacturer:
Atmel
Quantity:
10 000
8284A–AVR–10/10
The following code example shows one assembly and one C function for turning off the WDT.
The example assumes that interrupts are controlled (e.g. by disabling interrupts globally) so that
no interrupts will occur during execution of these functions.
Note:
Assembly Code Example
C Code Example
ATmega169A/169PA/329A/329PA/649A/649P/3290A/3290PA/6490A/6490P
WDT_off:
void WDT_off(void)
{
}
; Reset WDT
wdr
; Write logical one to WDCE and WDE
in
ori r16, (1<<WDCE)|(1<<WDE)
out WDTCR, r16
; Turn off WDT
ldi r16, (0<<WDE)
out WDTCR, r16
ret
/* Reset WDT */
__watchdog_reset();
/* Write logical one to WDCE and WDE */
WDTCR |= (1<<WDCE) | (1<<WDE);
/* Turn off WDT */
WDTCR = 0x00;
1.
See ”About Code Examples” on page 11.
r16, WDTCR
(1)
(1)
55

Related parts for ATMEGA6490P-AU