ATmega1284 Atmel Corporation, ATmega1284 Datasheet - Page 27

no-image

ATmega1284

Manufacturer Part Number
ATmega1284
Description
Manufacturer
Atmel Corporation
Datasheets

Specifications of ATmega1284

Flash (kbytes)
128 Kbytes
Pin Count
44
Max. Operating Frequency
20 MHz
Cpu
8-bit AVR
# Of Touch Channels
16
Hardware Qtouch Acquisition
No
Max I/o Pins
32
Ext Interrupts
32
Usb Speed
No
Usb Interface
No
Spi
3
Twi (i2c)
1
Uart
2
Graphic Lcd
No
Video Decoder
No
Camera Interface
No
Adc Channels
8
Adc Resolution (bits)
10
Adc Speed (ksps)
15
Analog Comparators
1
Resistive Touch Screen
No
Temp. Sensor
No
Crypto Engine
No
Sram (kbytes)
16
Eeprom (bytes)
4096
Self Program Memory
YES
Dram Memory
No
Nand Interface
No
Picopower
No
Temp. Range (deg C)
-40 to 85
I/o Supply Class
1.8 to 5.5
Operating Voltage (vcc)
1.8 to 5.5
Fpu
No
Mpu / Mmu
no / no
Timers
3
Output Compare Channels
6
Input Capture Channels
1
Pwm Channels
6
32khz Rtc
Yes
Calibrated Rc Oscillator
Yes

Available stocks

Company
Part Number
Manufacturer
Quantity
Price
Part Number:
ATmega1284-AU
Manufacturer:
ATMEL
Quantity:
1 200
Part Number:
ATmega1284-AU
Manufacturer:
Atmel
Quantity:
10 000
Part Number:
ATmega1284-AUR
Manufacturer:
Atmel
Quantity:
10 000
Part Number:
ATmega1284P-AU
Manufacturer:
ATMEL
Quantity:
1 000
Part Number:
ATmega1284P-AU
Manufacturer:
ATMEL
Quantity:
748
Part Number:
ATmega1284P-AU
Manufacturer:
Atmel
Quantity:
10 000
Part Number:
ATmega1284P-AU
Manufacturer:
Microchip
Quantity:
500
Part Number:
ATmega1284P-AU
Manufacturer:
MICROCHIP/微芯
Quantity:
20 000
Company:
Part Number:
ATmega1284P-AU
Quantity:
6 817
Company:
Part Number:
ATmega1284P-AU
Quantity:
6 797
Part Number:
ATmega1284P-AUR
Manufacturer:
Atmel
Quantity:
10 000
Part Number:
ATmega1284P-MU
Manufacturer:
PEREGRIN
Quantity:
1 992
Part Number:
ATmega1284P-MU
Manufacturer:
ATMEL/爱特梅尔
Quantity:
20 000
Part Number:
ATmega1284P-MUR
Manufacturer:
FREESCALE
Quantity:
593
Part Number:
ATmega1284PV-10MU
Manufacturer:
ATMEL/爱特梅尔
Quantity:
20 000
8272C–AVR–06/11
The following code examples show one assembly and one C function for writing to the
EEPROM. The examples assume that interrupts are controlled (e.g. by disabling interrupts glob-
ally) so that no interrupts will occur during execution of these functions. The examples also
assume that no Flash Boot Loader is present in the software. If such code is present, the
EEPROM write function must also wait for any ongoing SPM command to finish.
Note:
Assembly Code Example
C Code Example
EEPROM_write:
void EEPROM_write(unsigned int uiAddress, unsigned char ucData)
{
}
; Wait for completion of previous write
sbic EECR,EEPE
rjmp EEPROM_write
; Set up address (r18:r17) in address register
out EEARH, r18
out EEARL, r17
; Write data (r16) to Data Register
out EEDR,r16
; Write logical one to EEMPE
sbi EECR,EEMPE
; Start eeprom write by setting EEPE
sbi EECR,EEPE
ret
/* Wait for completion of previous write */
while(EECR & (1<<EEPE))
/* Set up address and Data Registers */
EEAR = uiAddress;
EEDR = ucData;
/* Write logical one to EEMPE */
EECR |= (1<<EEMPE);
/* Start eeprom write by setting EEPE */
EECR |= (1<<EEPE);
1. See “About Code Examples” on page 9
;
ATmega164A/PA/324A/PA/644A/PA/1284/P
(1)
()
27

Related parts for ATmega1284