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

ATMEGA48PA-AU 参数 Datasheet PDF下载

ATMEGA48PA-AU图片预览
型号: ATMEGA48PA-AU
PDF下载: 下载PDF文件 查看货源
内容描述: 8位微控制器与4/8/ 16 / 32K字节的系统内可编程闪存 [8-bit Microcontroller with 4/8/16/32K Bytes In-System Programmable Flash]
分类和应用: 闪存微控制器和处理器外围集成电路时钟
文件页数/大小: 448 页 / 12817 K
品牌: ATMEL [ ATMEL ]
 浏览型号ATMEGA48PA-AU的Datasheet PDF文件第222页浏览型号ATMEGA48PA-AU的Datasheet PDF文件第223页浏览型号ATMEGA48PA-AU的Datasheet PDF文件第224页浏览型号ATMEGA48PA-AU的Datasheet PDF文件第225页浏览型号ATMEGA48PA-AU的Datasheet PDF文件第227页浏览型号ATMEGA48PA-AU的Datasheet PDF文件第228页浏览型号ATMEGA48PA-AU的Datasheet PDF文件第229页浏览型号ATMEGA48PA-AU的Datasheet PDF文件第230页  
ATmega48PA/88PA/168PA/328P  
Assembly Code Example  
C Example  
Comments  
ldi r16,  
(1<<TWINT)|(1<<TWSTA)|  
TWCR = (1<<TWINT)|(1<<TWSTA)|  
(1<<TWEN)  
1
2
Send START condition  
(1<<TWEN)  
out TWCR, r16  
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  
r16,TWSR  
if ((TWSR & 0xF8) != START)  
Check value of TWI Status  
Register. Mask prescaler bits. If  
status different from START go to  
ERROR  
andi r16, 0xF8  
cpi r16, START  
brne ERROR  
ERROR();  
3
4
5
ldi r16, SLA_W  
out TWDR, r16  
TWDR = SLA_W;  
Load SLA_W into TWDR  
Register. Clear TWINT bit in  
TWCR to start transmission of  
address  
TWCR = (1<<TWINT) |  
(1<<TWEN);  
ldi r16, (1<<TWINT) |  
(1<<TWEN)  
out TWCR, r16  
wait2:  
while (!(TWCR & (1<<TWINT)))  
Wait for TWINT Flag set. This  
indicates that the SLA+W has  
been transmitted, and  
in  
r16,TWCR  
;
sbrs r16,TWINT  
rjmp wait2  
ACK/NACK has been received.  
in  
r16,TWSR  
if ((TWSR & 0xF8) !=  
MT_SLA_ACK)  
Check value of TWI Status  
Register. Mask prescaler bits. If  
status different from  
andi r16, 0xF8  
cpi r16, MT_SLA_ACK  
brne ERROR  
ERROR();  
MT_SLA_ACK go to ERROR  
ldi r16, DATA  
out TWDR, r16  
TWDR = DATA;  
TWCR = (1<<TWINT) |  
(1<<TWEN);  
Load DATA into TWDR Register.  
Clear TWINT bit in TWCR to  
start transmission of data  
ldi r16, (1<<TWINT) |  
(1<<TWEN)  
out TWCR, r16  
wait3:  
while (!(TWCR & (1<<TWINT)))  
Wait for TWINT Flag set. This  
indicates that the DATA has been  
transmitted, and ACK/NACK has  
been received.  
in  
r16,TWCR  
;
6
7
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  
andi r16, 0xF8  
cpi r16, MT_DATA_ACK  
brne ERROR  
ERROR();  
MT_DATA_ACK go to ERROR  
ldi r16,  
(1<<TWINT)|(1<<TWEN)|  
TWCR = (1<<TWINT)|(1<<TWEN)|  
(1<<TWSTO);  
Transmit STOP condition  
(1<<TWSTO)  
out TWCR, r16  
226  
8161D–AVR–10/09  
 复制成功!