??? 03/01/12 15:07 Read: times |
#186332 - cute Responding to: ???'s previous message |
If you configure the UART to send 55H on every edge, that is 5 pulses (1 SB+4 DB=L) per edge, or x10 in frequency.
You may not even need to scale the baud rate, but that can be done by timing between two edges, and choosing a rounded up baud value (so your 5 pulses always fit within that time-slot). if (input_pulse) { SBUF = 0x55; } ttthattts all fffolks of course the output will be in bursts, but is that a problem? Erik |