??? 01/08/11 06:33 Read: times |
#180486 - lcd EN signal Responding to: ???'s previous message |
Hello,
According to the tutorial on 8052.com regarding LCD programming, the EN bit should be manipulated repeatedly. Therefore should the EN bit be cleared after every instruction/command execution. EG: If data is sent for display CLEARING THE ENABLE setb RS clr RW clr EN mov P1,A setb EN lcall en_wait clr EN lcall lcd_wait RET WITHOUT CLEARING setb RS clr RW mov P1,A setb EN lcall en_wait clr EN lcall lcd_wait RET Does it make any difference to clear it before or not? the above two types are nothing but confusion in my logic ! Thanking You Karan Verma |