Ttelmah Guest
|
Re: Elimination of RX pin for software UART |
Posted: Tue Jan 25, 2005 9:30 am |
|
|
RobC wrote: | Is there a way when using the software UART to eliminate the RX pin? I have a project that requires only a TX pin from the micro. |
Just don't define a receive pin.
It is important to realise, that the #use RS232, itself does nothing. Code is only generated when it is used. So you can either leave RX undefined, or just define it as another pin already in use, and unless you actuall 'use' the receive function, no change will be made to the state of this pin, and no code generated.
Best Wishes |
|