Electronic Components Datasheet Search
  English  ▼
ALLDATASHEET.COM

X  

ATMEGA8515 Datasheet(PDF) 33 Page - ATMEL Corporation

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

ATMEGA8515 Datasheet(HTML) 33 Page - ATMEL Corporation

Back Button ATMEGA8515_10 Datasheet HTML 29Page - ATMEL Corporation ATMEGA8515_10 Datasheet HTML 30Page - ATMEL Corporation ATMEGA8515_10 Datasheet HTML 31Page - ATMEL Corporation ATMEGA8515_10 Datasheet HTML 32Page - ATMEL Corporation ATMEGA8515_10 Datasheet HTML 33Page - ATMEL Corporation ATMEGA8515_10 Datasheet HTML 34Page - ATMEL Corporation ATMEGA8515_10 Datasheet HTML 35Page - ATMEL Corporation ATMEGA8515_10 Datasheet HTML 36Page - ATMEL Corporation ATMEGA8515_10 Datasheet HTML 37Page - ATMEL Corporation Next Button
Zoom Inzoom in Zoom Outzoom out
 33 / 257 page
background image
33
ATmega8515(L)
2512K–AVR–01/10
Using all 64KB Locations of
External Memory
Since the External Memory is mapped after the Internal Memory as shown in Figure 11,
only 64,928 bytes of External Memory is available by default (address space 0x0000 to
0x025F is reserved for Internal Memory). However, it is possible to take advantage of
the entire External Memory by masking the higher address bits to zero. This can be
done by using the XMMn bits and control by software the most significant bits of the
address. By setting Port C to output 0x00, and releasing the most significant bits for nor-
mal Port Pin operation, the Memory Interface will address 0x0000 - 0x1FFF. See code
example below.
Note:
1. See “About Code Examples” on page 7.
Care must be exercised using this option as most of the memory is masked away.
Assembly Code Example(1)
; OFFSET is defined to 0x2000 to ensure
; external memory access
; Configure Port C (address high byte) to
; output 0x00 when the pins are released
; for normal Port Pin operation
ldi
r16, 0xFF
out
DDRC, r16
ldi
r16, 0x00
out
PORTC, r16
; release PC7:5
ldi
r16, (1<<XMM1)|(1<<XMM0)
out
SFIOR, r16
; write 0xAA to address 0x0001 of external
; memory
ldi
r16, 0xaa
sts
0x0001+OFFSET, r16
; re-enable PC7:5 for external memory
ldi
r16, (0<<XMM1)|(0<<XMM0)
out
SFIOR, r16
; store 0x55 to address (OFFSET + 1) of
; external memory
ldi
r16, 0x55
sts
0x0001+OFFSET, r16
C Code Example
(1)
#define OFFSET 0x2000
void
XRAM_example(void)
{
unsigned char *p = (unsigned char *) (OFFSET + 1);
DDRC = 0xFF;
PORTC = 0x00;
SFIOR = (1<<XMM1) | (1<<XMM0);
*p = 0xaa;
SFIOR = 0x00;
*p = 0x55;
}


Similar Part No. - ATMEGA8515_10

ManufacturerPart #DatasheetDescription
logo
ATMEL Corporation
ATMEGA8515-16AC ATMEL-ATMEGA8515-16AC Datasheet
2Mb / 254P
   8-bit AVR Microcontroller with 8K Bytes In-System Programmable Flash
ATMEGA8515-16AC ATMEL-ATMEGA8515-16AC Datasheet
235Kb / 21P
   8-bit Microcontroller with 8K Bytes In-System Programmable Flash
ATMEGA8515-16AI ATMEL-ATMEGA8515-16AI Datasheet
2Mb / 254P
   8-bit AVR Microcontroller with 8K Bytes In-System Programmable Flash
ATMEGA8515-16AI ATMEL-ATMEGA8515-16AI Datasheet
235Kb / 21P
   8-bit Microcontroller with 8K Bytes In-System Programmable Flash
ATMEGA8515-16AU ATMEL-ATMEGA8515-16AU Datasheet
2Mb / 254P
   8-bit AVR Microcontroller with 8K Bytes In-System Programmable Flash
More results

Similar Description - ATMEGA8515_10

ManufacturerPart #DatasheetDescription
logo
ATMEL Corporation
ATMEGA48V ATMEL-ATMEGA48V_06 Datasheet
3Mb / 374P
   8-bit Microcontroller with 8K Bytes In-System Programmable Flash
ATMEGA88 ATMEL-ATMEGA88_1 Datasheet
369Kb / 10P
   8-bit Microcontroller with 8K Bytes In-System Programmable Flash
AT89LP51 ATMEL-AT89LP51 Datasheet
4Mb / 113P
   8-bit Microcontroller with 8K Bytes In-System Programmable Flash
AT89S52 ATMEL-AT89S52_08 Datasheet
576Kb / 38P
   8-bit Microcontroller with 8K Bytes In-System Programmable Flash
ATMEGA88 ATMEL-ATMEGA88 Datasheet
210Kb / 20P
   8-bit Microcontroller with 8K Bytes In-System Programmable Flash
ATTINY25B ATMEL-ATTINY25B Datasheet
254Kb / 7P
   8-bit Microcontroller with 8K Bytes In-System Programmable Flash
AT90PWM3 ATMEL-AT90PWM3 Datasheet
3Mb / 365P
   8-bit Microcontroller with 8K Bytes In-System Programmable Flash
AT90PWM1 ATMEL-AT90PWM1 Datasheet
399Kb / 20P
   8-bit Microcontroller with 8K Bytes In-System Programmable Flash
AT89S52 ATMEL-AT89S52_05 Datasheet
478Kb / 39P
   8-bit Microcontroller with 8K Bytes In-System Programmable Flash
AT90S8515 ATMEL-AT90S8515_01 Datasheet
2Mb / 112P
   8-bit Microcontroller with 8K Bytes In-System Programmable Flash
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.COM
Does ALLDATASHEET help your business so far?  [ DONATE ] 

About Alldatasheet   |   Advertisement   |   Datasheet Upload   |   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