Electronic Components Datasheet Search
  English  ▼
ALLDATASHEET.NET

X  

ATMEGA128 Datasheet(PDF) 16 Page - ATMEL Corporation

Part # ATMEGA128
Description  8-bit Microcontroller with 128K Bytes In-System Programmable Flash
Download  386 Pages
Scroll/Zoom Zoom In 100%  Zoom Out
Manufacturer  ATMEL [ATMEL Corporation]
Direct Link  http://www.atmel.com
Logo ATMEL - ATMEL Corporation

ATMEGA128 Datasheet(HTML) 16 Page - ATMEL Corporation

Back Button ATMEGA128 Datasheet HTML 12Page - ATMEL Corporation ATMEGA128 Datasheet HTML 13Page - ATMEL Corporation ATMEGA128 Datasheet HTML 14Page - ATMEL Corporation ATMEGA128 Datasheet HTML 15Page - ATMEL Corporation ATMEGA128 Datasheet HTML 16Page - ATMEL Corporation ATMEGA128 Datasheet HTML 17Page - ATMEL Corporation ATMEGA128 Datasheet HTML 18Page - ATMEL Corporation ATMEGA128 Datasheet HTML 19Page - ATMEL Corporation ATMEGA128 Datasheet HTML 20Page - ATMEL Corporation Next Button
Zoom Inzoom in Zoom Outzoom out
 16 / 386 page
background image
16
2467R–AVR–06/08
ATmega128
There are basically two types of interrupts. The first type is triggered by an event that sets the
interrupt flag. For these interrupts, the Program Counter is vectored to the actual interrupt vector
in order to execute the interrupt handling routine, and hardware clears the corresponding inter-
rupt flag. Interrupt flags can also be cleared by writing a logic one to the flag bit position(s) to be
cleared. If an interrupt condition occurs while the corresponding interrupt enable bit is cleared,
the interrupt flag will be set and remembered until the interrupt is enabled, or the flag is cleared
by software. Similarly, if one or more interrupt conditions occur while the global interrupt enable
bit is cleared, the corresponding interrupt flag(s) will be set and remembered until the global
interrupt enable bit is set, and will then be executed by order of priority.
The second type of interrupts will trigger as long as the interrupt condition is present. These
interrupts do not necessarily have interrupt flags. If the interrupt condition disappears before the
interrupt is enabled, the interrupt will not be triggered.
When the AVR exits from an interrupt, it will always return to the main program and execute one
more instruction before any pending interrupt is served.
Note that the Status Register is not automatically stored when entering an interrupt routine, nor
restored when returning from an interrupt routine. This must be handled by software.
When using the CLI instruction to disable interrupts, the interrupts will be immediately disabled.
No interrupt will be executed after the CLI instruction, even if it occurs simultaneously with the
CLI instruction. The following example shows how this can be used to avoid interrupts during the
timed EEPROM write sequence.
Assembly Code Example
in
r16, SREG
; store SREG value
cli
; disable interrupts during timed sequence
sbi
EECR, EEMWE
; start EEPROM write
sbi
EECR, EEWE
out
SREG, r16
; restore SREG value (I-bit)
C Code Example
char
cSREG;
cSREG = SREG; /* store SREG value */
/* disable interrupts during timed sequence */
__disable_interrupt();
EECR |= (1<<EEMWE); /* start EEPROM write */
EECR |= (1<<EEWE);
SREG = cSREG; /* restore SREG value (I-bit) */


Similar Part No. - ATMEGA128

ManufacturerPart #DatasheetDescription
logo
ATMEL Corporation
ATMEGA128 ATMEL-ATMEGA128 Datasheet
360Kb / 16P
   8-bit Microcontroller with 128K Bytes In-System Programmable Flash
Rev. 2467XS-AVR-06/11
ATMEGA128 ATMEL-ATMEGA128 Datasheet
317Kb / 31P
   8-bit Microcontroller with 128K Bytes In-System Programmable Flash
Rev. 2467OS-AVR-10/06
ATMEGA128 ATMEL-ATMEGA128 Datasheet
349Kb / 16P
   8-bit Microcontroller with 128K Bytes In-System Programmable Flash
Rev. 2467CS-AVR-02/02
ATMEGA128 ATMEL-ATMEGA128 Datasheet
613Kb / 26P
   8-bit Microcontroller with 128K Bytes In-System Programmable Flash
Rev. 2467S-AVR-07/09
ATmega128 ATMEL-ATmega128 Datasheet
6Mb / 386P
   8-bit Microcontroller with 128K Bytes In-System Programmable Flash
More results

Similar Description - ATMEGA128

ManufacturerPart #DatasheetDescription
logo
ATMEL Corporation
ATMEGA1284P ATMEL-ATMEGA1284P_1 Datasheet
6Mb / 380P
   8-bit Microcontroller with 128K Bytes In-System Programmable Flash
8059D-AVR-11/09
ATMEGA128A ATMEL-ATMEGA128A_09 Datasheet
555Kb / 21P
   8-bit Microcontroller with 128K Bytes In-System Programmable Flash
Rev. 8151DS-AVR-07/09
ATMEGA128 ATMEL-ATMEGA128_02 Datasheet
349Kb / 16P
   8-bit Microcontroller with 128K Bytes In-System Programmable Flash
Rev. 2467CS-AVR-02/02
ATMEGA1284P ATMEL-ATMEGA1284P_09 Datasheet
374Kb / 20P
   8-bit Microcontroller with 128K Bytes In-System Programmable Flash
8059DS-AVR-11/09
ATMEGA128 ATMEL-ATMEGA128 Datasheet
360Kb / 16P
   8-bit Microcontroller with 128K Bytes In-System Programmable Flash
Rev. 2467XS-AVR-06/11
ATMEGA128 ATMEL-ATMEGA128_09 Datasheet
6Mb / 386P
   8-bit Microcontroller with 128K Bytes In-System Programmable Flash
ATMEGA103 ATMEL-ATMEGA103_07 Datasheet
2Mb / 141P
   8-bit Microcontroller with 128K Bytes In-System Programmable Flash
ATMEGA128 ATMEL-ATMEGA128_06 Datasheet
317Kb / 31P
   8-bit Microcontroller with 128K Bytes In-System Programmable Flash
Rev. 2467OS-AVR-10/06
ATMEGA128A ATMEL-ATMEGA128A_10 Datasheet
561Kb / 22P
   8-bit Microcontroller with 128K Bytes In-System Programmable Flash
ATMEGA1284P ATMEL-ATMEGA1284P Datasheet
416Kb / 20P
   8-bit Microcontroller with 128K Bytes In-System Programmable Flash
8059BS-AVR-05/08
More results


Html Pages

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100  ...More


Datasheet Download

Go To PDF Page


Link URL




Privacy Policy
ALLDATASHEET.NET
Does ALLDATASHEET help your business so far?  [ DONATE ] 

About Alldatasheet   |   Advertisement   |   Contact us   |   Privacy Policy   |   Link Exchange   |   Manufacturer List
All Rights Reserved©Alldatasheet.com


Mirror Sites
English : Alldatasheet.com  |   English : Alldatasheet.net  |   Chinese : Alldatasheetcn.com  |   German : Alldatasheetde.com  |   Japanese : Alldatasheet.jp
Russian : Alldatasheetru.com  |   Korean : Alldatasheet.co.kr  |   Spanish : Alldatasheet.es  |   French : Alldatasheet.fr  |   Italian : Alldatasheetit.com
Portuguese : Alldatasheetpt.com  |   Polish : Alldatasheet.pl  |   Vietnamese : Alldatasheet.vn
Indian : Alldatasheet.in  |   Mexican : Alldatasheet.com.mx  |   British : Alldatasheet.co.uk  |   New Zealand : Alldatasheet.co.nz
Family Site : ic2ic.com  |   icmetro.com