Email: Password: Remember Me | Create Account (Free)

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
06/05/02 11:40
Read: times


 
#23942 - RE: LCD and Serial Transmission

" P3.0 (RxD) as RS 
  P3.1 (TxD) as RW 
  P3.2 (_INT0) as EN 

  DATA EQU 090H"


1. You would minimize time for RW=0.
   Hold RW line high as long as possible.
   Pull it off only if you write to LCD -
   - see for start bit detection of ACE.
   (I assume P3.1 pin (TxD) is connected to
   Rx of PC too.)
2. I must repeat my question. What is the 
   reason of such design.
3. Gurus advice to you to use 4-bit interface.
4. Why you don't simulate HD44780U timing
   diagram such way ->

TETST_BF:
         CLR RS 
         SETB RW 
         MOV DATA,#0FFH 
LCDPOLL: 
         SETB EN 
         MOV A,DATA
         CLR  EN
         JB ACC.7,LCDPOLL 
;  CLR EN - commented out
;  CLR RW - commented out
         RET 
Think about your XTAL frequency and use NOPs
if it is necessary.
5. Test busy flag before another LCD addressing.

Vaclav


List of 8 messages in thread
TopicAuthorDate
LCD and Serial Transmission            01/01/70 00:00      
RE: LCD and Serial Transmission            01/01/70 00:00      
RE: LCD and Serial Transmission            01/01/70 00:00      
RE: LCD and Serial Transmission            01/01/70 00:00      
RE: LCD and Serial Transmission            01/01/70 00:00      
RE: LCD and Serial Transmission            01/01/70 00:00      
RE: LCD and Serial Transmission            01/01/70 00:00      
RE: LCD and Serial Transmission            01/01/70 00:00      

Back to Subject List