欢迎访问ic37.com |
会员登录 免费注册
发布采购

ATMEGA8A-AUR 参数 Datasheet PDF下载

ATMEGA8A-AUR图片预览
型号: ATMEGA8A-AUR
PDF下载: 下载PDF文件 查看货源
内容描述: [RISC Microcontroller, 8-Bit, FLASH, AVR RISC CPU, 16MHz, CMOS, PQFP32, 7 X 7 MM, 1 MM HEIGHT, 0.80 MM PITCH, GREEN, PLASTIC, MS-026ABA, TQFP-32]
分类和应用: 闪存
文件页数/大小: 308 页 / 4674 K
品牌: ATMEL [ ATMEL ]
 浏览型号ATMEGA8A-AUR的Datasheet PDF文件第46页浏览型号ATMEGA8A-AUR的Datasheet PDF文件第47页浏览型号ATMEGA8A-AUR的Datasheet PDF文件第48页浏览型号ATMEGA8A-AUR的Datasheet PDF文件第49页浏览型号ATMEGA8A-AUR的Datasheet PDF文件第51页浏览型号ATMEGA8A-AUR的Datasheet PDF文件第52页浏览型号ATMEGA8A-AUR的Datasheet PDF文件第53页浏览型号ATMEGA8A-AUR的Datasheet PDF文件第54页  
• Bit 0 – IVCE: Interrupt Vector Change Enable  
The IVCE bit must be written to logic one to enable change of the IVSEL bit. IVCE is cleared by  
hardware four cycles after it is written or when IVSEL is written. Setting the IVCE bit will disable  
interrupts, as explained in the IVSEL description above. See Code Example below.  
Assembly Code Example  
Move_interrupts:  
; Enable change of Interrupt Vectors  
ldi r16, (1<<IVCE)  
out GICR, r16  
; Move interrupts to boot Flash section  
ldi r16, (1<<IVSEL)  
out GICR, r16  
ret  
C Code Example  
void Move_interrupts(void)  
{
/* Enable change of Interrupt Vectors */  
GICR = (1<<IVCE);  
/* Move interrupts to boot Flash section */  
GICR = (1<<IVSEL);  
}
50  
ATmega8(L)  
2486T–AVR–05/08  
 复制成功!