Im being successful using software library to transmit data between 2 wired arduinos as part of a larger project using VLC as communication.
I want to send data manchester encoded and i need the clock that software serial library uses so i can connect, clock and data, to a xor port and then get my manchester coded data.
Anyone knows how (or in which pin) i can get the clock?
SoftwareSerial doesn't use any other than the system clock. It uses an interrupt (either external or pin change) to start the reception routine and then uses delay loops to receive or send data.