ARM2440 for LCD

Publisher:心满愿望Latest update time:2020-02-02 Source: eefocusKeywords:ARM2440 Reading articles on mobile phones Scan QR code
Read articles on your mobile phone anytime, anywhere

Change the original 3.5-inch resolution from 240x320 to 480x272


Timing settings:

CLKVAL=4 (VCLK =10) 5< VCLK <12 Each dot scanning cycle        

VSPW = 10-1 2< tvp < - typ:10 Vertical synchronization signal

VBPD=2-1 2< tvb <- typ: 2 How long does it work after the vertical sync signal

LINEVAL=272-1 tvd :272 272 lines

VFPD=2-1 2< tvf < - type:2 How long does it take to send a synchronization signal after scanning a frame?    

HSPW=41-1 2< thp < - type:41 Horizontal synchronization signal

HBPD=2-1 2< thb <- How long does it work after the horizontal synchronization signal

HOZVAL=480-1 thd:480 480列

HFPD=2-1 2< thb < - How long does it take to receive the synchronization signal after scanning this line?

 

HSYNC_INV VSYNC_INV horizontal and vertical signals are opposite to the LCD controller level, so bit flipping is required

 

Video memory address rewrite

        LCDSADDR2 = LOWER21BITS((LCDFRAMEBUFFER+
                    (LINEVAL_TFT_240320+1)*(HOZVAL_TFT_240320+1)*2)>>1);
        LCDSADDR3 = (0<<11) | (LCD_XSIZE_TFT_240320*2/2);

        xsize = 240;
        ysize = 320;

--------------------------------------------------------------------------------------------

        LCDSADDR2 = LOWER21BITS((LCDFRAMEBUFFER+
                    (480)*(272)*1)>>1);
        LCDSADDR3 = (0<<11) | (480/2);

 

      xsize = 480;
       ysize = 272;


Keywords:ARM2440 Reference address:ARM2440 for LCD

Previous article:ARM2440 LCD Experiment
Next article:ARM JTAG debugging principles

Recommended ReadingLatest update time:2024-11-16 12:27

New iPhone XR appearance exposed: Apple’s last LCD screen phone?
There is no doubt that among the latest generation of iPhone models, there are three models: iPhone XS Max, iPhone XS and iPhone XR, and the best-selling one is iPhone XR. This inevitably makes people wonder whether Apple will release the successor to iPhone XR this fall? If so, what will be the evolution of various a
[Mobile phone portable]
Teach you the TFT-LCD driving method of ARM chip S3C2410
introduction S3C2410 is a RISC microprocessor based on the ARM920T core produced by Samsung. The main frequency can reach 203MHz. It is suitable for information appliances, Smart Phones, Tablets, handheld devices, mobile terminals and other fields. Among them, the integrated LCD controller is versatile and can interfa
[Microcontroller]
Teach you the TFT-LCD driving method of ARM chip S3C2410
my country's first 8.5-generation TFT-LCD glass substrate production line was ignited, the first localization
On June 18, the 8.5-generation TFT-LCD glass substrate production line independently developed and built by Bengbu Zhongguang Optoelectronics Technology Co., Ltd. based on the float glass process was ignited.        According to China National Radio, this is the first 8.5-generation TFT-LCD glass substrate productio
[Mobile phone portable]
Interface Design between LCD and LPC2134 Based on T6963C
  0 Preface   As a commonly used display device, the liquid crystal module has the characteristics of low power consumption, rich display content, and flexible control. Among the medium-sized graphic liquid crystal display modules, the LCD module with built-in T6963C controller is currently a more commonly used buil
[Microcontroller]
Interface Design between LCD and LPC2134 Based on T6963C
Microcontroller Lesson 14: LCD Usage
Below is the circuit of LCD, where RD is connected to P2^6; LCDE is connected to P2^7, and WR is connected to P2^5. #include reg51.h #define uint unsigned int #define uchar unsigned char sbit lcd_E = P2^7; sbit lcd_RS = P2^6; sbit lcd_WR = P2^5; uchar code table_show1  = "Hello!"; uchar code table_show2  = "I am
[Microcontroller]
Microcontroller Lesson 14: LCD Usage
LCD:1602 display program
#include #include intrins.h sbit RS=P3^7; sbit RW=P3^6; sbit E=P3^5; sbit BF=P2^7; void delay(unsigned char n) //about n(ms) delay {   unsigned char i,j,k;   for(k=0;k n;k++)     {    for(j=0;j 10;j++) //about 1ms delay      {     for(i=0;i 32;i++) //about 0.1ms delay      {;}         }     } } u
[Microcontroller]
Analysis of LCD driver of S3C2440 built-in Linux kernel
Let's first look at how applications operate the screen: Linux works in protected mode, so user-mode processes cannot use the interrupt calls provided in the graphics card BIOS to directly write to the screen like DOS does. Linux abstracts the FrameBuffer device for user-mode processes to write to the screen directl
[Microcontroller]
The world's first Dimensity 8000+ LCD screen flagship! Renderings of the suspected OPPO K10 are exposed
       According to currently known information, OPPO will hold a new product launch conference next week to officially launch the OPPO K10 series of mobile phones, which will be equipped with flagship chips across the board.   Today, the overseas website 91mobiles exposed the renderings of what is suspected to be the
[Mobile phone portable]
The world's first Dimensity 8000+ LCD screen flagship! Renderings of the suspected OPPO K10 are exposed
Latest Microcontroller Articles
  • Download from the Internet--ARM Getting Started Notes
    A brief introduction: From today on, the ARM notebook of the rookie is open, and it can be regarded as a place to store these notes. Why publish it? Maybe you are interested in it. In fact, the reason for these notes is ...
  • Learn ARM development(22)
    Turning off and on interrupts Interrupts are an efficient dialogue mechanism, but sometimes you don't want to interrupt the program while it is running. For example, when you are printing something, the program suddenly interrupts and another ...
  • Learn ARM development(21)
    First, declare the task pointer, because it will be used later. Task pointer volatile TASK_TCB* volatile g_pCurrentTask = NULL;volatile TASK_TCB* vol ...
  • Learn ARM development(20)
    With the previous Tick interrupt, the basic task switching conditions are ready. However, this "easterly" is also difficult to understand. Only through continuous practice can we understand it. ...
  • Learn ARM development(19)
    After many days of hard work, I finally got the interrupt working. But in order to allow RTOS to use timer interrupts, what kind of interrupts can be implemented in S3C44B0? There are two methods in S3C44B0. ...
  • Learn ARM development(14)
  • Learn ARM development(15)
  • Learn ARM development(16)
  • Learn ARM development(17)
Change More Related Popular Components

EEWorld
subscription
account

EEWorld
service
account

Automotive
development
circle

About Us Customer Service Contact Information Datasheet Sitemap LatestNews


Room 1530, 15th Floor, Building B, No.18 Zhongguancun Street, Haidian District, Beijing, Postal Code: 100190 China Telephone: 008610 8235 0740

Copyright © 2005-2024 EEWORLD.com.cn, Inc. All rights reserved 京ICP证060456号 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号