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

Back to Subject List

Old thread has been locked -- no new posts accepted in this thread
???
09/04/02 06:45
Read: times


 
#28512 - RE: Serial port dilemma

Hi Aman,

it seems, you have some code inside your initialization, which put TXD to low level.

Maybe, you set all ports to low, which was very dangerous, since then external outputs fighting against your micro.

You can only set such port pins to low, which are used as outputs only and if it was really needed.


Typically on most initialization routines the ports are forced into the reset state:

P0 = 0xFF;
P1 = 0xFF;
P2 = 0xFF;
P3 = 0xFF;


Peter


List of 11 messages in thread
TopicAuthorDate
Serial port dilemma            01/01/70 00:00      
RE: Serial port dilemma            01/01/70 00:00      
RE: Serial port dilemma            01/01/70 00:00      
RE: Serial port dilemma            01/01/70 00:00      
RE: Serial port dilemma            01/01/70 00:00      
RE: Serial port dilemma            01/01/70 00:00      
RE: Serial port dilemma            01/01/70 00:00      
RE: Serial port dilemma            01/01/70 00:00      
RE: Serial port dilemma            01/01/70 00:00      
RE: Serial port dilemma            01/01/70 00:00      
RE: Serial port dilemma            01/01/70 00:00      

Back to Subject List