I wonder if you couldn't get much of the benefit of differential signaling by using two GPIOs to drive the two sides of the twisted pair, where one GPIO puts out the logical inverse of the other. (If you put a 0 logic level [0 v] on one pin, you put a 1 logic level [3.3 v] on the other, and vice-versa.) Maybe put a terminating resistor across the pair at the destination end to soak up would-be reflections, or, if that's too much load for the GPIO "drivers" *, you might try serial source termination resistors (but that approach might significantly limit your baud rate for long cables)....
One way to improve things is to use pairs of wires: you will notice that the Ethernet cable you mentioned has 8 wires, but they are arranged as four pairs, each pair being twisted together. Most serious long-distance data transmission uses differential drivers: two wires for every signal, one being the inverse of the other, such that all these unpredictable effects apply equally to the two wires but in opposite directions such that they cancel out - and this also means that changes in the signal don't cause any current in the GND wire (as again the effects of the two wires cancel out).
You can't readily do that with Pico GPIOs ...
In the late '80s, I worked on a project that used a HiPPI channel, and I was really impressed by the power of differential signaling on twisted pair. At the time, we didn't have any fancy line driver chips, but some kind of basic level-conversion type chips worked fine.
Re: bench testing: there is an old story about Thomas Edison working on the Transatlantic Telegraph Cable. Before the ships set out to lay the cable, he was testing the wires as thoroughly as he could. He got some results that mystified him. Apparently, it had something to do with the fact that the cables on the spools acted as giant inductors, and he wasn't accounting for that (or didn't know about it, although he previously had built some generators and things like that).
P.S. If you're driving the cable directly with GPIOs, don't forget to gpio_set_drive_strength(gpio, GPIO_DRIVE_STRENGTH_12MA);.
* If a GPIO can drive 12 mA at 3.3 V I guess you'd need a resistor of at least 275 Ω, but that might be close enough to the line impedance (probably something more like 100 Ω, if I had to guess) to significantly improve the signal integrity.
Statistics: Posted by carlk3 — Mon Jun 10, 2024 2:45 am