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

ATMEGA32L-8AUR 参数 Datasheet PDF下载

ATMEGA32L-8AUR图片预览
型号: ATMEGA32L-8AUR
PDF下载: 下载PDF文件 查看货源
内容描述: [RISC Microcontroller, 8-Bit, FLASH, AVR RISC CPU, 8MHz, CMOS, PQFP44, 10 X 10 MM, 1 MM HEIGHT, 0.80 MM PITCH, GREEN, PLASTIC, MS-026ACB, TQFP-44]
分类和应用: 闪存微控制器
文件页数/大小: 347 页 / 3171 K
品牌: ATMEL [ ATMEL ]
 浏览型号ATMEGA32L-8AUR的Datasheet PDF文件第178页浏览型号ATMEGA32L-8AUR的Datasheet PDF文件第179页浏览型号ATMEGA32L-8AUR的Datasheet PDF文件第180页浏览型号ATMEGA32L-8AUR的Datasheet PDF文件第181页浏览型号ATMEGA32L-8AUR的Datasheet PDF文件第183页浏览型号ATMEGA32L-8AUR的Datasheet PDF文件第184页浏览型号ATMEGA32L-8AUR的Datasheet PDF文件第185页浏览型号ATMEGA32L-8AUR的Datasheet PDF文件第186页  
set. Writing a one to TWINT clears the flag. The TWI will then commence executing  
whatever operation was specified by the TWCR setting.  
In the following an assembly and C implementation of the example is given. Note that  
the code below assumes that several definitions have been made, for example by using  
include-files.  
Assembly code example  
C example  
Comments  
ldi  
r16, (1<<TWINT)|(1<<TWSTA)|  
TWCR = (1<<TWINT)|(1<<TWSTA)|  
1
2
Send START condition  
(1<<TWEN)  
TWCR, r16  
(1<<TWEN)  
out  
wait1:  
while (!(TWCR & (1<<TWINT)))  
Wait for TWINT Flag set. This indicates  
that the START condition has been  
transmitted  
in  
r16,TWCR  
;
sbrs r16,TWINT  
rjmp wait1  
in  
andi r16, 0xF8  
cpi r16, START  
brne ERROR  
r16,TWSR  
if ((TWSR & 0xF8) != START)  
3
Check value of TWI Status Register. Mask  
prescaler bits. If status different from  
START go to ERROR  
ERROR();  
ldi  
out  
ldi  
out  
r16, SLA_W  
TWDR = SLA_W;  
Load SLA_W into TWDR Register. Clear  
TWINT bit in TWCR to start transmission  
of address  
TWDR, r16  
TWCR = (1<<TWINT) | (1<<TWEN);  
r16, (1<<TWINT) | (1<<TWEN)  
TWCR, r16  
wait2:  
while (!(TWCR & (1<<TWINT)))  
4
5
Wait for TWINT Flag set. This indicates  
that the SLA+W has been transmitted,  
and ACK/NACK has been received.  
in  
r16,TWCR  
;
sbrs r16,TWINT  
rjmp wait2  
in  
r16,TWSR  
if ((TWSR & 0xF8) != MT_SLA_ACK)  
Check value of TWI Status Register. Mask  
prescaler bits. If status different from  
MT_SLA_ACK go to ERROR  
andi r16, 0xF8  
ERROR();  
cpi  
r16, MT_SLA_ACK  
brne ERROR  
ldi  
out  
ldi  
out  
r16, DATA  
TWDR = DATA;  
Load DATA into TWDR Register. Clear  
TWINT bit in TWCR to start transmission  
of data  
TWDR, r16  
TWCR = (1<<TWINT) | (1<<TWEN);  
r16, (1<<TWINT) | (1<<TWEN)  
TWCR, r16  
wait3:  
while (!(TWCR & (1<<TWINT)))  
6
7
Wait for TWINT Flag set. This indicates  
that the DATA has been transmitted, and  
ACK/NACK has been received.  
in  
r16,TWCR  
;
sbrs r16,TWINT  
rjmp wait3  
in  
r16,TWSR  
if ((TWSR & 0xF8) != MT_DATA_ACK)  
Check value of TWI Status Register. Mask  
prescaler bits. If status different from  
MT_DATA_ACK go to ERROR  
andi r16, 0xF8  
ERROR();  
cpi  
r16, MT_DATA_ACK  
brne ERROR  
ldi  
out  
r16, (1<<TWINT)|(1<<TWEN)|  
TWCR = (1<<TWINT)|(1<<TWEN)|  
(1<<TWSTO);  
Transmit STOP condition  
(1<<TWSTO)  
TWCR, r16  
182  
ATmega32(L)  
2503J–AVR–10/06  
 复制成功!