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

ATMEGA169PV 参数 Datasheet PDF下载

ATMEGA169PV图片预览
型号: ATMEGA169PV
PDF下载: 下载PDF文件 查看货源
内容描述: 微控制器,带有16K字节的系统内可编程闪存 [Microcontroller with 16K Bytes In-System Programmable Flash]
分类和应用: 闪存微控制器
文件页数/大小: 390 页 / 3485 K
品牌: ATMEL [ ATMEL ]
 浏览型号ATMEGA169PV的Datasheet PDF文件第238页浏览型号ATMEGA169PV的Datasheet PDF文件第239页浏览型号ATMEGA169PV的Datasheet PDF文件第240页浏览型号ATMEGA169PV的Datasheet PDF文件第241页浏览型号ATMEGA169PV的Datasheet PDF文件第243页浏览型号ATMEGA169PV的Datasheet PDF文件第244页浏览型号ATMEGA169PV的Datasheet PDF文件第245页浏览型号ATMEGA169PV的Datasheet PDF文件第246页  
In the example below we assume SEG10 and COM1 and SEG4 in COM0 are the only segments  
changed from frame to frame. Data are stored in r20 and r21 for simplicity  
Assembly Code Example(1)  
LCD_update:  
; LCD Blanking and Low power waveform are unchanged.  
; Update Display memory.  
sts LCDDR0, r20  
sts LCDDR6, r21  
ret  
C Code Example(1)  
Void LCD_update(unsigned char data1, data2);  
{
/* LCD Blanking and Low power waveform are unchanged. */  
/* Update Display memory. */  
LCDDR0 = data1;  
LCDDR6 = data2;  
}
Note:  
Disabling the LCD  
1. See ”About Code Examples” on page 9.  
22.4.3  
In some application it may be necessary to disable the LCD. This is the case if the MCU enters  
Power-down mode where no clock source is present.  
The LCD should be completely discharged before being disabled. No DC voltage should be left  
across any segment. The best way to achieve this is to use the LCD Blanking feature that drives  
all segment pins and common pins to GND.  
When the LCD is disabled, port function is activated again. Therefore, the user must check that  
port pins connected to a LCD terminal are either tri-state or output low (sink).  
242  
ATmega169P  
8018A–AVR–03/06  
 复制成功!