EmbeddedRelated.com
Forums
Memfault Beyond the Launch

Shared Communications Bus - RS-422 or RS-485

Started by Rick C November 2, 2022
On Wednesday, November 2, 2022 at 8:37:03 PM UTC-4, Paul Rubin wrote:
> Rick C <gnuarm.del...@gmail.com> writes: > > I'm lost. How is this any better? The data collection is running on > > the PC, so there still has to be communications... All they would be > > doing is acting as a serial port concentrator. They went out 40 years > > ago! > Well, I always like doing stuff in software instead of hardware.
What hardware can you replace with software??? You use *different* hardware and then have to add new software. That's not an improvement.
> Serial > port concentrators are still around and I posted a link to one in your > other thread. It seems like a reasonable approach too. Oddly, a quick > web search doesn't find any big cheap serial to ethernet ones, but maybe > you could use USB hubs and FTDI-like cables.
I'm getting tired of discussing this. Your added hardware solves no problems. Having 32 serial ports just makes the software more complex and saves nothing.
> The idea of using an MCU is to move almost everything speed critical > away from the PC. The MCU only has control the FPGA's and transfer > transfer digested data upwards to the PC. By having some fanout you > could potentially control 1000s of UUT instead of 80 from a single PC, > without having to build anything special. It would just mean plugging > some off the shelf boxes together, and writing some code. > > You're more comfortable with hardware than I am, so maybe that approach > has less attraction for you than it does for me.
What hardware??? It's a serial port either way. You want to add a middle man that accomplishes nothing. You talk about controlling 1000's of UUTs, but there is no need for that. What I need at this point, is the mechanical details of how to design a board to fit into a Eurocard chassis and how to figure out all the bits that go with it. -- Rick C. +- Get 1,000 miles of free Supercharging +- Tesla referral code - https://ts.la/richard11209
On 03/11/2022 00:27, Rick C wrote:
> On Wednesday, November 2, 2022 at 4:49:16 PM UTC-4, David Brown wrote: >> On 02/11/2022 20:20, Rick C wrote: >>> On Wednesday, November 2, 2022 at 5:28:21 AM UTC-4, David Brown >>> wrote: >>>> On 02/11/2022 06:28, Rick C wrote: >>>>> I have a test fixture that uses RS-232 to communicate with a PC. >>>>> It actually uses the voltage levels of RS-232, even though this >>>>> is from a USB cable on the PC, so it's only RS-232 for maybe four >>>>> inches. lol >>>>> >>>>> I'm redesigning the test fixtures to hold more units and fully >>>>> automate a few features that presently requires an operator. >>>>> There will now be 8 UUTs on each test fixture and I expect to >>>>> have 10 to 20 test fixtures in a card rack. That's 80 to 160 UUTs >>>>> total. There will be an FPGA controlling each pair of UUTs, so 80 >>>>> FPGAs in total that the PC needs to talk to. >>>>> >>>>> Rather than working on a way to mux 80 RS-232 interfaces, I'm >>>>> thinking it would be better to either daisy chain, or connect in >>>>> parallel all these devices. The protocol is master-slave where >>>>> the master sends a command and the slaves are idle until they >>>>> reply. The four FPGAs on a test fixture board could be connected >>>>> in parallel easily enough. But I don't think I want to run TTL >>>>> level signals between so many boards. >>>>> >>>>> I could do an RS-422 interface with a master to slave pair and a >>>>> slave to master pair. The slaves do not speak until spoken to, >>>>> so there will be no collisions. >>>>> >>>> RS-422 is normally a point-to-point interface. It is one line in >>>> each direction, but using balanced pairs instead of a TTL signal. >>>> You would not normally connect multiple receivers or transmitters >>>> to an RS-422 bus, as the standard practice is that each transmitter >>>> is always driving the pair it is attached to - there is no >>>> multi-drop. >>> >>> That is simply not true. Data sheets for RS-422 devices often show >>> multidrop applications and how to best terminate them. >>> >> RS-422 is not multidrop. Occasionally you will see multiple receivers >> on a bus, but not multiple transmitters. > > Not sure of your point. Multi-drop is multiple receivers on a single transmitter. Multi-point is multiple drivers and receivers. Look at a few references. Even wikipedia says, "RS-422 provides for data transmission, using balanced, or differential, signaling, with unidirectional/non-reversible, terminated or non-terminated transmission lines, point to point, or multi-drop. In contrast to EIA-485, RS-422/V.11 does not allow multiple drivers but only multiple receivers." >
OK. I have always associated "multidrop" with multiple receivers /and/ transmitters - I have never come across a need for multiple receivers on a serial bus without them also needing to transmit (such as in your case), or a distinction between "multi-drop" meaning multiple receivers and "multi-point" meaning multiple transmitters. The term "multi-drop" is more commonly taken to mean "multiple devices connected directly to the same bus, transmitting and receiving". The bus has no explicit direction on the electrical connections. Examples include RS-485, CAN, co-ax Ethernet. "Multi-point" is more general and can be any kind of network where there are multiple nodes that can send and receive to all other nodes. That would include a switched Ethernet network as well as the subclass of "multi-drop" networks. But whatever the terms, I think we agree on how RS-422 works.
> >> Of course the same driver chips can be used in different combinations of >> wiring and drive enables. An RS-422 driver chip can be viewed as two >> RS-485 driver chips - alternatively, a RS-485 driver can be viewed as an >> RS-422 driver with the two differential pairs connected together. >> Really, all you are talking about is a differential driver and a >> differential receiver. > > Sure, but the point is, nothing in RS-422 precludes multiple receivers, and in fact, every reference I've found (not paying for the actual spec) shows multi-drop receivers. >
Yes, it seems that is entirely possible. The only uses I have seen for RS-422 is as a kind of long-range alternative to RS-232. And the only use I have seen for multiple receivers is - like for RS-232 - for monitoring and debugging communication. Still, multiple receivers are not going to help you in your testbench unless they can also transmit.
> >> So yes, you can do multidrop using an RS-422 driver chip. But it is not >> RS-422, which is a point-to-point serial bus standard. > > I don't believe that is correct. If you have a copy of the spec to share, I'd love to look at it. I might have one myself, but it would be a paper copy somewhere unknown. The diagrams showing multi-drop RS-422 is so ubiquitous, I expect they are from the standard itself. > > >>>>> RS-485 would allow all this to be over a single pair of wires. >>>>> But the one big issue I see people complain about is getting PC >>>>> software to not clobber the slaves, or I should say, to get the >>>>> master to wait long enough that it's not clobbering it's own >>>>> start bit by overwriting the stop bit of the slave. I suppose >>>>> someone, somewhere has dealt with this on the PC and has a >>>>> solution that doesn't impact bus speed. I run the single test >>>>> fixture version of this at about 100 kbps. I'm going to want as >>>>> much speed as I can get for 80 FPGAs controlling 160 UUTs. Maybe >>>>> I should give that some analysis, because this might not be >>>>> true. >>>> RS-485 is easy from a PC using appropriate USB devices. We make >>>> heavy use of FTDI's chips and cables - they handle the drive >>>> enables for the RS-485 automatically so that from the PC side you >>>> just read and write to the serial port. >>> >>> I've yet to be convinced of this. Admittedly, my last interaction >>> with RS-485 was many years ago, but there were some four or five >>> different devices being integrated with a PC, and no two of them >>> handled it the bus the same way. The PC in particular, would cut on >>> and off the driver in the middle of bits. No one put a bias on the >>> bus, so it was indeterminate when no one was driving. It was a >>> horrible failure. >>> >>> Every time I've seen this discussed, the driver control has been an >>> issue. >> I can tell you it works perfectly with FTDI's RS-485 cables - every >> time, every OS, regardless of the software. Some RS-485 drivers rely on >> RTS for the drive enable - this was the standard for RS-232 to RS-485 >> converters from the old days of 9-pin and 25-pin serial ports on PC's. >> With such drivers, it is certainly possible to get things wrong. With >> the drive enable handled directly by the UART hardware on the USB chip, >> it is /far/ harder to get it wrong. > > So, what range of speeds have you used? It is actually the UART hardware that *does* get it very wrong by working off the transmitter empty signal, which changes in the middle of the bit. The control has to be specially designed to transition at the *end* of the stop bit of the transmitted character. Knowing when it is ok to enable the driver has the same problem. The data is "received" in the middle of the stop bit. So the enable has to be a half bit time later, at the end of the stop bit.
For RS-485, my usage has usually been quite slow (9600 baud is very common). Other colleagues have used faster rates. But as I said, it is the slow baud rates that are at higher risk. However, without knowing exact implementation details of all UART hardware, I think you are wrong. There are two "finished byte" signals that are common in UART transmission hardware. The first is "transmit buffer empty" which is set when a byte is transferred from the buffer into the transmitter shift register - most UARTs are at least double-buffered to improve flow. This signal comes a whole character before the end of the transmission - it is useful for the software, but not the hardware. If you have a transmitter that is not double-buffered, this signal would likely come at the beginning of the stop bit, or at the end of the stop bit (depending on how the state machines were made). The second is "transmission complete", which is set at the /end/ of the stop bit sent out on the line. That's when you know everything has been sent - software can move on, and hardware can turn off the driver. I cannot imagine why anyone would design transmission hardware that had a special signal or disabled a driver in the /middle/ of the stop bit. That makes no sense, and would have no use in software or hardware. That is definitely an imagined problem. (For reference, the FTDI datasheets show that the TXDEN output is activated one bit before the start bit - so that the start bit is a 1 to 0 transition, as required for UARTs - and deactivated at the end of the stop bit.) You are correct that reception is in the middle of the stop bit (typically sub-slot 9 of 16). The first transmitter will be disabled at the end of the stop bit, and the next transmitter must not enable its driver until after that point - it must wait at least half a bit time after reception before starting transmission. (It can wait longer without trouble, which is why faster baud rates are less likely to involve any complications here.)
> > None of this matters to me really. I'm going to use more wires, and do the multi-drop from the PC to the slaves on one pair and use RS-422 to multi-point from the slaves to the PC. Since the slaves are controlled by the master, they will never collide. The master can't collide with itself, so I can ignore any issues with this. I will use the bias resistors to assure a valid idle state. I may need to select different devices than the ones I use in the product. I think there are differences in the input load and I want to be sure I can chain up to 32 units. >
OK. I have no idea what such a hybrid bus should technically be called, but I think it should work absolutely fine for the purpose and seems like a solid solution. I would not foresee any issues with 32 nodes on such a bus, especially if it is relatively short and you have terminators at each end. (You still have to consider the latencies and timings to see if you can get enough messages through the system fast enough, but you won't see bus collisions. Consider broadcasts or multicast messages without replies as a way of avoiding latency.)
> >> I would expect there to be many alternatives to FTDI that work similarly >> well, but that's the ones we generally use. >> >> <https://ftdichip.com/product-category/products/cables/?series_products=55> >>> >>>> The reception of the last byte from a slave is not finished until >>>> the stop bit has been properly received by the master - that means >>>> at least half-way through the sending of the stop bit. >>> >>> That's not sufficient. Everyone's halfway is a bit different and >>> start bit detection may not be enabled on some device when the next >>> driver outputs a start bit, or the last driver may not be turned off >>> when the next driver starts. >>> >> "At least half-way" means "at least 50% of the bit time". As long as >> the start bit from the next message is not sent until at least 50% of a >> bit time after the stop bit is detected, it will not conflict and all >> listening devices will be ready to see the start bit. (Devices that >> needed two stop bits haven't existed in the last 50 years.) > > You don't seem to understand that there is nothing timing from the start of the bit. The timing is from the first detected low of the start bit. From there, all timing is done by an internal clock. Check the math, you don't get 50% of the stop bit, guaranteed. That's why they call it "asynchronous" serial. >
The beginning of the start bit is detected at the receiver by its falling edge. It is /confirmed/ by samples in the middle (or the falling edge gets rejected as noise), but all timing is done from that start time - not from the middle of any bits. It is called "asynchronous" because the transmitter and the receiver do not have any pre-agreed or external synchronisation regarding when the transmission is going to happen. But once it starts, they agree exactly on /when/ it starts (assuming a short enough bus that rise times and transmission line delays are negligible). I must admit that I have been assuming that you have reasonable quality clock references on each side of the communication, so that your baud rates match. In theory you have a total of nearly 5% margin of error for mismatched baud rates, line rise and fall delays, etc., and these can add to the maximum time between the receiver recognising a stop bit and the transmitter finishing sending the stop bit, giving between almost 0 and almost 1 bit time (typically 2/16 to 14/16 bit times).
> >> You asked specifically about bus turnaround at the host side - I assume >> that is because on the slave devices, you have control of the drive >> enables and bus turnaround happens with negligible latency. > > I know the master has the most trouble with this. The slaves tend to not have a problem because they are operated by MCUs and can wait a bit time before replying, or even a character time. I suppose they don't have any magic on turning off the driver though, but early is the easy way and generally doesn't cause a problem. The master has trouble on both ends of it's message, needing to be careful to not turn on the driver too soon and not turning it off too late to clobber the reply. >
PC's are not good at accurate short delays, but have no problem at making a delay of at least a given time. There is no excuse for a PC program turning on the driver too soon - even if it were not handled automatically by the hardware, adding a "sleep" call to get a minimum delay is basic stuff. In the old days (I remember doing this stuff on 16-bit Windows) it was hard to get a reliable delay that was shorter than about 20 ms, but even then it was possible. The bigger challenge with "manual" driver enable control in PC software is being sure you turn the driver off fast enough, before the other end replies. However - and I know I am repeating myself - the answer is to get a decent USB to RS-485 converter that does this correctly and automatically in hardware. As for delays before replying (or before sending a new message from the master), we have only talked about them in regard to bus drivers. It is standard practice to have an additional delay beyond the minimum, as it gives a bit of extra leeway and makes debugging easier - you can see the start and stop of the messages on an oscilloscope. Modbus RTU, for example, specifies an inter-frame silence time of at least 3.5 characters.
> >>>> Then there is a delay before the data gets sent back to the host >>>> PC, a delay through the kernel and drivers before it reaches the >>>> user program, time for the program to handle that message, time for >>>> it to prepare the next message, delays through the kernel and >>>> drivers before it gets to the USB bus, latency in the USB device >>>> that receives the USB message and then starts transmitting. There >>>> can be no collision unless all that delay is less than half a bit >>>> time. And no matter how fast your computer is, you are always going >>>> to need at least one full USB polling cycle for all this, which for >>>> USB 2.0 is 0.125 us. That means that if you have a baud rate of 16 >>>> kbaud or higher, there is no possibility of a collision. >>> >>> If your numbers are accurate, that might be ok, but I'm looking for >>> data rates closer to 1 Mbps. >> USB serial ports generally use the 48 MHz base USB reference frequency >> as their source clock to scale down by a baud rate divisor, and common >> practice is 16 sub-bit clocks per line bit (so that you can have >> multiple samples for noise immunity). Thus baud rates of integer >> divisions of 3 MBaud are common. Certainly the FTDI chips handle 1, 2 >> and 3 MBaud. (I haven't had need of such speeds with RS-485, but have >> happily used the common 3v3 TTL cables at 3 MBaud.) > > At some point you have to worry with the line waveforms. So too fast can cause problems when using *lots* of receivers. >
Yes. But I don't think you have a physically long bus, do you? 10 meters, maybe? 3 MBaud and 32 nodes should be fine.
> >>> Admittedly, I have not done an analysis >>> of what will actually be required, but 128 UUT, or possibly 256, can >>> do a lot of damage to a shared bus. At 1 Mbps, 128 UUT results in an >>> effective bit rate maximum of 7.8 kbps. With 256 UUTs, that's 3.9 >>> kbps. No, I don't think this will work properly at much slower >>> speeds than 1 Mbps. At 16 kbps, the effective rate to each UUT is >>> just 62.5 bps, not kbps. >>> >> As long as you are /above/ 16 kbaud, you should be fine (at the PC >> side). At 1 Mbaud, you do not need to worry about the PC starting a new >> telegram before the last received stop bit is completed. > > Not entirely. The master has to turn *off* the driver before the slave replies. At higher speeds that's a problem. But it all depends on how it is being done. This is why I'm going with two busses, one for master transmit and one for master input. >
Unless you are masochistic or stuck in the last century, the driver turnoff is done by the USB to RS485 driver, not by a PC program in software. (I think for several reasons your hybrid bus is a better choice than a single RS-485 bus - though I would still prefer to look at a hierarchical setup myself.)
> >>>>> The tests are of two types, most of them are setting up a state >>>>> and reading a signal. This can go pretty fast and doesn't take >>>>> too many commands. Then there are the audio tests where the FPGA >>>>> sends digital data to the UUT, which does it's thing and returns >>>>> digital data which is crunched by the FPGA. This takes some small >>>>> number of seconds and presently the protocol is to poll the >>>>> status until it is done. That's a lot of messages, but it's not >>>>> necessarily a slow point. The same test can be started on every >>>>> UUT in parallel, so the waiting is in parallel. So maybe the >>>>> serial port won't need to be any faster. >>>>> >>>>> Still, I want to use RS-422 or RS-485 to deal with ground noise >>>>> since this will be spread over multiple boards that don't have >>>>> terribly solid grounds, just the power cable really. >>>>> >>>>> I'm thinking out loud here as much as anything. I intended to >>>>> simply ask if anyone had experience with RS-485 that would be >>>>> helpful. Running two wires rather than eight would be a help. >>>>> I'll probably use a 10 pin connector just to be on the safe side, >>>>> allowing the transceivers to be used either way. >>>>> >>>> You need to do some calculations to see if you can get enough >>>> telegrams and enough data through a single serial port. You'll be >>>> hard pushed to find a USB serial port device of any kind that goes >>>> above 3 Mbaud, and you need to be careful about your selection of >>>> RS-485 drivers for those kinds of rates. You will also find that >>>> much of your bandwidth is taken up with pauses between telegrams >>>> and reply latency, unless you make your telegrams quite large. >>> >>> I assume by "telegrams", you mean the messages. They will be small >>> by necessity. The protocol is interactive with a command message and >>> a reply message. Read a register, write a register. >>> >> Telegram, message, packet - whatever term you prefer. At faster baud >> rates, the inevitable pauses between messages take proportionately more >> of the total bandwidth. Longer messages will be more efficient. But >> you'll have to do the sums yourself to see what rates you need, and >> whether or not this will be an issue. > > Not sure what delays you are talking about. Every message is either selecting a slave, or reading a register or writing a register. You are probably thinking like a code banger where you have to worry with software delays. The protocol at the interface to the UUT is serial, at 30 MHz and the turn around is so quick, I had to use a mux to select the first bit and shift the rest of the data from a shift register. All in all it is under a &mu;s for a transfer, and the data can be sent to the PC in ASCII Hex format which even at 1 Mbps is much slower. I can't say what the delays on the PC are. It's never been of interest, but I can't imagine it's much. >
There are /always/ delays - in particular at the PC side. PC's are good for high throughput, but bad for low latency. If they are not a problem, then that's fine.
> >>>> When we have made testbenches that required serial communication >>>> to multiple parallel devices, we typically put a USB hub in the >>>> testbench and use multiple FDTI USB to serial cables. You only make >>>> one (or possibly a few) of the testbenches - it's much cheaper to >>>> use off-the-shelf parts than to spend time designing something >>>> more advanced. You can buy a /lot/ of hubs and USB cables for the >>>> price of the time to design, build and program a custom card for >>>> the job. It also makes the system more scalable, as the >>>> communication to different devices runs in parallel. >>> >>> USB hubs are a last resort. I've found many issues with such >>> devices, especially larger than 4 ports. >>> >> We find they work fine - I have very rarely seen any issues with >> off-the-shelf hubs, regardless of the number of ports. (They are almost >> all made with 1-to-4 hub chips, which is why hubs are often found in >> sizes of 4 ports, 7 ports, or 10 ports.) > > Exactly, and I find combining them like that has issues. >
Experiences vary, I guess.
> >> A key complication with multiple serial ports on hubs is if you are >> using Windows, it can be a big pain to keep consistent numbering for the >> serial ports. You may have to use driver-specific libraries (like >> FTDI's DLL's) to check serial numbers and use that information. It's >> far easier on Linux where you can make a udev configuration file that >> gives aliases to your ports ordered by physical tree address. > > Yet another reason to avoid such complications. The reality is there's no gain. The multi-drop is the right way to go here. >
You see a complication where I see a simple configuration. And if you need to use multiple serial ports on a single PC, Linux and a udev configuration is a /huge/ gain. I currently have 7 serial ports in use on my development PC at the moment, connected to debug ports (TTL UARTs) on various boards. /dev/ttySerialPort_2_3 for hub 2 port 3 is vastly superior to "COM74" on a Windows system. (I have no idea if you are using Windows or Linux on your controlling PC here.)
> >>>> We have also done systems where there is a Raspberry Pi driving the >>>> hub and multiple FTDI converters. The PC is connected to the Pi by >>>> Ethernet (useful for galvanic isolation), and the Pi runs >>>> forwarders between the serial ports and TCP/IP ports. >>> >>> There is a possibility of using an rPi on an Ethernet cable to the PC >>> with direct comms to each test fixture board, but that's more work >>> that I'm interested in. >>> >> Or you could use one Pi for a set of boards - whatever is physically >> convenient. > > But it's yet another piece to keep working. Much easier to just use the multi-drop. I will keep that idea as a backup plan. But getting RS-422 on an rPi is a hassle. That would need to be a hat, or a shield or whatever they call daughter cards on rPis. Last time I checked, it was hard to find rPis. They are part of the unobtainium universe now, it seems. >
Of course availability of parts is of prime concern these days, and projects are often done by buying what you can and then designing around the devices you have found. Pi's have USB - you do your RS-485, RS-422 or whatever on the Pi in exactly the same way as you do it on the PC, using FTDI cables (or an alternative supplier that you are comfortable with). Plug and play. It is about modularisation and scalability. Now, I don't know your product, your manufacturing and test systems, your preferences, or anything other than the information you've written here. But if our production department asked us to make a test bench for handling 80 devices in parallel, my immediate reaction would be to refuse. I'd design a testbench to handle 8, or some number of that order. Then I'd get them to make perhaps 12 of these test benches. That way, they have something scalable and maintainable. If one testbench breaks, they are at 90% production capacity instead of 0%. If they need to increase capacity, they can make a few more benches. If they want to spread testing between two facilities, it's easy. So for /me/, and /my/ company, splitting things up in a hierarchy with Pi's (or something similar) has clear advantages. But you might have very different priorities or organisations that give different dynamics and different trade-offs.
> >>>> To be fair, I don't recall any testbenches we've made that needed >>>> more than perhaps 8 serial ports. If I needed to handle 80 lines, I >>>> would probably split things up - a Pi handling 8-10 lines from a >>>> local program, communicating with a PC master program by Ethernet. >>> >>> That's the advantage of the shared bus. No programming required, >>> other than extending the protocol to move from "selecting" a device >>> on the FPGA, to selecting the FPGA as well. >>> >> If you are familiar with socat, the Pi doesn't necessarily need any >> programming either. (In our case we wanted some extra monitoring and >> logging, which was more than we could get from socat - so it was a >> couple of hundred lines of Python in the end.) > > A couple hundred lines I'd rather not write. > > Thanks for the comments. >
Thanks for starting the threads here - it's nice to have a bit of real discussion in this group that is often rather quiet.
Il 03/11/2022 12:42, David Brown ha scritto:
> On 03/11/2022 00:27, Rick C wrote: >> On Wednesday, November 2, 2022 at 4:49:16 PM UTC-4, David Brown wrote: >>> On 02/11/2022 20:20, Rick C wrote: >>>> On Wednesday, November 2, 2022 at 5:28:21 AM UTC-4, David Brown >>>> wrote: >>>>> On 02/11/2022 06:28, Rick C wrote:
> You are correct that reception is in the middle of the stop bit > (typically sub-slot 9 of 16).&nbsp; The first transmitter will be disabled at > the end of the stop bit, and the next transmitter must not enable its > driver until after that point - it must wait at least half a bit time > after reception before starting transmission.&nbsp; (It can wait longer > without trouble, which is why faster baud rates are less likely to > involve any complications here.)
Do you mean that RX interrupt triggers in the middle of the stop bit and not at the end? Interesting, but are you sure this is the case for every UART implemented in MCUs? I wouldn't be surprised if the implementation was different for different manufacturers.
>> None of this matters to me really.&nbsp; I'm going to use more wires, and >> do the multi-drop from the PC to the slaves on one pair and use RS-422 >> to multi-point from the slaves to the PC.&nbsp; Since the slaves are >> controlled by the master, they will never collide.&nbsp; The master can't >> collide with itself, so I can ignore any issues with this.&nbsp; I will use >> the bias resistors to assure a valid idle state.&nbsp; I may need to select >> different devices than the ones I use in the product.&nbsp; I think there >> are differences in the input load and I want to be sure I can chain up >> to 32 units. >> > > OK.&nbsp; I have no idea what such a hybrid bus should technically be called, > but I think it should work absolutely fine for the purpose and seems > like a solid solution.&nbsp; I would not foresee any issues with 32 nodes on > such a bus, especially if it is relatively short and you have > terminators at each end.
In my experience, termination resistors at each end of the line could introduce other troubles if they aren't strictly required (because of signal integrity on long lines at high baud rates). The receiver input impedance of all the nodes on the bus are in parallel with the two terminators. If you have many nodes, the equivalent impedance on the bus is much small and the partition with bias resistors could reduce the differential voltage between A and B at idle to less than 200mV. If you don't use true fail-safe transceivers, a fault start bit could be seen by these kind of receivers.
On 03/11/2022 14:00, pozz wrote:
> Il 03/11/2022 12:42, David Brown ha scritto: >> On 03/11/2022 00:27, Rick C wrote: >>> On Wednesday, November 2, 2022 at 4:49:16 PM UTC-4, David Brown wrote: >>>> On 02/11/2022 20:20, Rick C wrote: >>>>> On Wednesday, November 2, 2022 at 5:28:21 AM UTC-4, David Brown >>>>> wrote: >>>>>> On 02/11/2022 06:28, Rick C wrote: > > >> You are correct that reception is in the middle of the stop bit >> (typically sub-slot 9 of 16).&nbsp; The first transmitter will be disabled >> at the end of the stop bit, and the next transmitter must not enable >> its driver until after that point - it must wait at least half a bit >> time after reception before starting transmission.&nbsp; (It can wait >> longer without trouble, which is why faster baud rates are less likely >> to involve any complications here.) > > Do you mean that RX interrupt triggers in the middle of the stop bit and > not at the end? Interesting, but are you sure this is the case for every > UART implemented in MCUs?
Of course I'm not sure - there are a /lot/ of MCU manufacturers! UART receivers usually work in the same way, however. They have a sample clock running at 16 times the baud clock. The start bit is edge triggered to give the start of the character frame. Then each bit is sampled in the middle of its time slot - usually at subbit slots 7, 8, and 9 with majority voting. So the stop bit is recognized by subbit slot 9 of the tenth bit (assuming 8-bit, no parity) - the voltage on the line after that is irrelevant. (Even when you have two stop bits, receivers never check the second stop bit - it affects transmit timing only.) What purpose would there be in waiting another 7 subbits before triggering the interrupt, DMA, or whatever?
> > I wouldn't be surprised if the implementation was different for > different manufacturers. >
I've seen a bit of variation, including 8 subbit clocks per baud clock, wider sampling ranges, re-sync of the clock on edges, etc. And of course you don't always get the details of the timings in datasheets (and who bothers measuring them?) But the key principles are the same.
> >>> None of this matters to me really.&nbsp; I'm going to use more wires, and >>> do the multi-drop from the PC to the slaves on one pair and use >>> RS-422 to multi-point from the slaves to the PC.&nbsp; Since the slaves >>> are controlled by the master, they will never collide.&nbsp; The master >>> can't collide with itself, so I can ignore any issues with this.&nbsp; I >>> will use the bias resistors to assure a valid idle state.&nbsp; I may need >>> to select different devices than the ones I use in the product.&nbsp; I >>> think there are differences in the input load and I want to be sure I >>> can chain up to 32 units. >>> >> >> OK.&nbsp; I have no idea what such a hybrid bus should technically be >> called, but I think it should work absolutely fine for the purpose and >> seems like a solid solution.&nbsp; I would not foresee any issues with 32 >> nodes on such a bus, especially if it is relatively short and you have >> terminators at each end. > > In my experience, termination resistors at each end of the line could > introduce other troubles if they aren't strictly required (because of > signal integrity on long lines at high baud rates). >
RS-485 requires them - you want to hold the bus at a stable idle state when nothing is driving it. You also want to have a bit of load so that you have some current on the bus, and thereby greater noise immunity.
> The receiver input impedance of all the nodes on the bus are in parallel > with the two terminators. If you have many nodes, the equivalent > impedance on the bus is much small and the partition with bias resistors > could reduce the differential voltage between A and B at idle to less > than 200mV. > > If you don't use true fail-safe transceivers, a fault start bit could be > seen by these kind of receivers. >
Receiver load is very small on modern RS-485 drivers.
On Thursday, November 3, 2022 at 9:01:00 AM UTC-4, pozz wrote:
> Il 03/11/2022 12:42, David Brown ha scritto: > > On 03/11/2022 00:27, Rick C wrote: > >> On Wednesday, November 2, 2022 at 4:49:16 PM UTC-4, David Brown wrote: > >>> On 02/11/2022 20:20, Rick C wrote: > >>>> On Wednesday, November 2, 2022 at 5:28:21 AM UTC-4, David Brown > >>>> wrote: > >>>>> On 02/11/2022 06:28, Rick C wrote: > > > > You are correct that reception is in the middle of the stop bit > > (typically sub-slot 9 of 16). The first transmitter will be disabled at > > the end of the stop bit, and the next transmitter must not enable its > > driver until after that point - it must wait at least half a bit time > > after reception before starting transmission. (It can wait longer > > without trouble, which is why faster baud rates are less likely to > > involve any complications here.) > Do you mean that RX interrupt triggers in the middle of the stop bit and > not at the end? Interesting, but are you sure this is the case for every > UART implemented in MCUs?
No, I have not tested every MCU UART ever made. This was the case when I tried using RS-485 many years ago and was in every UART chip available. I forget the number, but there was a particular part made by Western Digital that became the "standard". It blossomed into a family of devices with small improvements in each (typically adding a FIFO and the size of the FIFO). I never saw one of that family which changed this "feature". It's because the purpose of this signal was not to control a driver, but to signal to a CPU the buffer condition. The UART timing is to first align to the middle of the start bit, then continue marking the time for bit centers. When it times the middle of the stop bit, the receiver or transmitter is done and flags the received character is available or the transmitter register is empty. The stop bit is the default value of the line, so nothing further has to be done in the UART, other than the receiver entering the start bit hunt mode. If a modern UART has a separate signal that flags the end of the stop bit time, that would be great, but I have no reason to think this is available in every case, or any particular case, unless it is documented, *well* documented. Have you seen any parts that specifically indicate they flag the end of the stop bit of characters received or transmitted? I recall the 8251 USART by Intel was full of bugs and this flag was no exception.
> I wouldn't be surprised if the implementation was different for > different manufacturers.
Of course. The trouble is knowing which ones have what!
> >> None of this matters to me really. I'm going to use more wires, and > >> do the multi-drop from the PC to the slaves on one pair and use RS-422 > >> to multi-point from the slaves to the PC. Since the slaves are > >> controlled by the master, they will never collide. The master can't > >> collide with itself, so I can ignore any issues with this. I will use > >> the bias resistors to assure a valid idle state. I may need to select > >> different devices than the ones I use in the product. I think there > >> are differences in the input load and I want to be sure I can chain up > >> to 32 units. > >> > > > > OK. I have no idea what such a hybrid bus should technically be called, > > but I think it should work absolutely fine for the purpose and seems > > like a solid solution. I would not foresee any issues with 32 nodes on > > such a bus, especially if it is relatively short and you have > > terminators at each end. > In my experience, termination resistors at each end of the line could > introduce other troubles if they aren't strictly required (because of > signal integrity on long lines at high baud rates). > > The receiver input impedance of all the nodes on the bus are in parallel > with the two terminators. If you have many nodes, the equivalent > impedance on the bus is much small and the partition with bias resistors > could reduce the differential voltage between A and B at idle to less > than 200mV.
That depends on the details of the receivers and drivers. I have control over that other than the USB cable. To assure I'm using appropriate RS-422 devices, I could use a TTL cable and on the first test fixture board use a separate connector with TTL level signaling. This would then be buffered on this first board to RS-422 for the rest of the chain. I could do all this with RS232, but it doesn't provide for tristate on the outputs. Not that I recall anyway.
> If you don't use true fail-safe transceivers, a fault start bit could be > seen by these kind of receivers.
Sorry, I don't know what you mean by "fail-safe" transceivers. Are you talking about the driver or the receiver? Do you mean the internal bias some receivers have, so with zero volts across the input pair they are in a defined state? That can be done through external resistors as well. I'm expecting to use shorting jumpers for setting various modes on these test fixtures. Do they make any shorting jumpers that are more than just two pins? I've never seen that. I suppose I could make one using a connector and wire. I think my biggest problem is going to be the mechanical parts of the chassis. I need the boards to be very strong to withstand many insertion removal cycles of the UUTs from these boards. We currently do burn in using production Eurocard format units. They are very stiff with a rail on the front. I just realized, they probably get a lot of stiffening from the massive Eurocard connectors on the back and similar connectors on the front panel. I was planning to use a front panel, but maybe I need to add board stiffeners as well. In the "old" days, when DIPs roamed the earth, these were a combination of power decoupling capacitor and board stiffener. They probably don't even make them anymore. I really need the board to be solid so it doesn't suffer damage from the strain of repeated use. Maybe I just need to bolt a hunk of metal to the card. -- Rick C. ++ Get 1,000 miles of free Supercharging ++ Tesla referral code - https://ts.la/richard11209
Rick C <gnuarm.deletethisbit@gmail.com> writes:
> What hardware can you replace with software??? You use *different* > hardware and then have to add new software. That's not an > improvement.
The idea is to avoid BUILDING hardware. Plugging cables into a box is not building. There is no soldering iron, oscilloscope, or anything like that in the picture. If you already avoid that, then great.
Rick C <gnuarm.deletethisbit@gmail.com> writes:
> I think my biggest problem is going to be the mechanical parts of the > chassis. I need the boards to be very strong to withstand many > insertion removal cycles of the UUTs from these boards.
I wonder if you can use some kind of low-force connector or cable on the card, instead of plugging and unplugging the card from a chassis. E.g. something like https://www.adafruit.com/product/5468 depending on how many conductors are needed.
On Thursday, November 3, 2022 at 12:57:41 PM UTC-4, Paul Rubin wrote:
> Rick C <gnuarm.del...@gmail.com> writes: > > What hardware can you replace with software??? You use *different* > > hardware and then have to add new software. That's not an > > improvement. > The idea is to avoid BUILDING hardware. Plugging cables into a box is > not building. There is no soldering iron, oscilloscope, or anything > like that in the picture. If you already avoid that, then great.
You seem to misunderstand. I AM building hardware. There's no choice in that matter. You want me to add other hardware and also software that adds nothing, improves nothing, and just creates more potential problems. This all seems to be because you can't understand the very, very simple nature of a master-slave shared bus and a polling protocol. The bottom line is, you don't know much about the application, but think you can design it better. Why are you doing this? The only way to "improve" this, might be to use RS-232 instead of RS-422. But that loses the noise immunity of the differential signaling and would require adding analog switches to the slave transmit outputs. It is also very unspecified, so I'd have to do more engineering to be sure it will work. So RS-422 is looking pretty good to me. The connectors will be RJ-45 8P8C connectors. They are cheap and easy to plug/unplug. They mount securely to the board and can even be integrated into the front panel rather than hanging out the back. I still need to figure out how to distribute power. It's probably going to be plugs like they use on PC laptop supplies. This will most likely be supplied by a laptop supply, so I'll need a board that splits out the one PSU to 16 power cables. Sounds like a job for perf board and a small, plastic case. The supply on my laptop is 300W. That should do the trick easily. -- Rick C. --- Get 1,000 miles of free Supercharging --- Tesla referral code - https://ts.la/richard11209
On Thursday, November 3, 2022 at 1:36:31 PM UTC-4, Paul Rubin wrote:
> Rick C <gnuarm.del...@gmail.com> writes: > > I think my biggest problem is going to be the mechanical parts of the > > chassis. I need the boards to be very strong to withstand many > > insertion removal cycles of the UUTs from these boards. > I wonder if you can use some kind of low-force connector or cable on the > card, instead of plugging and unplugging the card from a chassis. > > E.g. something like https://www.adafruit.com/product/5468 depending on > how many conductors are needed.
How about something like this? https://www.digikey.com/en/products/detail/amphenol-cs-commercial-products/RJHSE538B02/1979553 That's what I'm going to use. I'd run the power through it as well, but even with the low power I'll be using, 28 ga is a bit small. I'm just not a big fan of the typical barrel power connectors. I'd be happy if they had a detent so they won't fall out. The nylon shell connectors are a pain to remove. -- Rick C. --+ Get 1,000 miles of free Supercharging --+ Tesla referral code - https://ts.la/richard11209
On 11/2/2022 1:28 AM, Rick C wrote:
> I have a test fixture that uses RS-232 to communicate with a PC. It actually uses the voltage levels of RS-232, even though this is from a USB cable on the PC, so it's only RS-232 for maybe four inches. lol > > I'm redesigning the test fixtures to hold more units and fully automate a few features that presently requires an operator. There will now be 8 UUTs on each test fixture and I expect to have 10 to 20 test fixtures in a card rack. That's 80 to 160 UUTs total. There will be an FPGA controlling each pair of UUTs, so 80 FPGAs in total that the PC needs to talk to. > > Rather than working on a way to mux 80 RS-232 interfaces, I'm thinking it would be better to either daisy chain, or connect in parallel all these devices. The protocol is master-slave where the master sends a command and the slaves are idle until they reply. The four FPGAs on a test fixture board could be connected in parallel easily enough. But I don't think I want to run TTL level signals between so many boards. > > I could do an RS-422 interface with a master to slave pair and a slave to master pair. The slaves do not speak until spoken to, so there will be no collisions. > > RS-485 would allow all this to be over a single pair of wires. But the one big issue I see people complain about is getting PC software to not clobber the slaves, or I should say, to get the master to wait long enough that it's not clobbering it's own start bit by overwriting the stop bit of the slave. I suppose someone, somewhere has dealt with this on the PC and has a solution that doesn't impact bus speed. I run the single test fixture version of this at about 100 kbps. I'm going to want as much speed as I can get for 80 FPGAs controlling 160 UUTs. Maybe I should give that some analysis, because this might not be true. > > The tests are of two types, most of them are setting up a state and reading a signal. This can go pretty fast and doesn't take too many commands. Then there are the audio tests where the FPGA sends digital data to the UUT, which does it's thing and returns digital data which is crunched by the FPGA. This takes some small number of seconds and presently the protocol is to poll the status until it is done. That's a lot of messages, but it's not necessarily a slow point. The same test can be started on every UUT in parallel, so the waiting is in parallel. So maybe the serial port won't need to be any faster. > > Still, I want to use RS-422 or RS-485 to deal with ground noise since this will be spread over multiple boards that don't have terribly solid grounds, just the power cable really. > > I'm thinking out loud here as much as anything. I intended to simply ask if anyone had experience with RS-485 that would be helpful. Running two wires rather than eight would be a help. I'll probably use a 10 pin connector just to be on the safe side, allowing the transceivers to be used either way. >
Hi Rick - I have an RS-485 system on my desk using an implementation of the old Intel BitBus. Works fine for a handful of nodes, limited distance, and very simple cabling - but only 62.5kbaud. Good solid technology for 1994 when I designed it... Why would you use RS-485 instead of CAN? A million chips out there support CAN with no fuss, works at decent speeds over twisted pair, not hard to use. BTW, another option for interfacing to RS-485 from USB is XR21B1411 which is what I happen to have on my desk. Hope that helps! Best Regards, Dave

Memfault Beyond the Launch