Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

"I have five dollars for each of you." -- Bernhard Goetz


computers / comp.arch.embedded / Re: Shared Communications Bus - RS-422 or RS-485

Re: Shared Communications Bus - RS-422 or RS-485

<05989871-748b-4b08-b564-84a323418b45n@googlegroups.com>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=1146&group=comp.arch.embedded#1146

  copy link   Newsgroups: comp.arch.embedded
X-Received: by 2002:ac8:4710:0:b0:3a5:2580:6169 with SMTP id f16-20020ac84710000000b003a525806169mr23537204qtp.338.1667576429893;
Fri, 04 Nov 2022 08:40:29 -0700 (PDT)
X-Received: by 2002:a81:57d2:0:b0:36b:cc32:a150 with SMTP id
l201-20020a8157d2000000b0036bcc32a150mr34945993ywb.420.1667576429613; Fri, 04
Nov 2022 08:40:29 -0700 (PDT)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer03.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.arch.embedded
Date: Fri, 4 Nov 2022 08:40:29 -0700 (PDT)
In-Reply-To: <tk2n7g$1o0ct$1@dont-email.me>
Injection-Info: google-groups.googlegroups.com; posting-host=63.114.57.174; posting-account=I-_H_woAAAA9zzro6crtEpUAyIvzd19b
NNTP-Posting-Host: 63.114.57.174
References: <6b8c6b92-a2ca-4849-ba68-f03060bc41fcn@googlegroups.com>
<tjtd7g$145er$1@dont-email.me> <b4a93d7d-3d6f-4b23-86b1-f1066b6b72ebn@googlegroups.com>
<tjul46$18dkn$3@dont-email.me> <ec91ddbe-6777-494f-8001-cf57fc15deeen@googlegroups.com>
<tk09ev$1f0de$1@dont-email.me> <tk0e27$1f1rv$1@dont-email.me>
<tk0mih$1g2fh$1@dont-email.me> <tk2fuo$1nau3$1@dont-email.me> <tk2n7g$1o0ct$1@dont-email.me>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <05989871-748b-4b08-b564-84a323418b45n@googlegroups.com>
Subject: Re: Shared Communications Bus - RS-422 or RS-485
From: gnuarm.d...@gmail.com (Rick C)
Injection-Date: Fri, 04 Nov 2022 15:40:29 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 15305
 by: Rick C - Fri, 4 Nov 2022 15:40 UTC

On Friday, November 4, 2022 at 5:49:42 AM UTC-4, David Brown wrote:
> On 04/11/2022 08:45, pozz wrote:
> > Il 03/11/2022 16:26, David Brown ha scritto:
> >> 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). 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?
> >>
> >> 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?
> >
> > There's no real purpose, but it's important to know exactly when the RX
> > interrupt is fired from the UART.
> >
> I think it is extremely rare that this is important. I can't think of a
> single occasion when I have thought it remotely relevant where in the
> stop bit the interrupt comes.
> > Usually the next transmitter starts transmitting after receiving the
> > last byte of the previous transmitter (for example, the slave starts
> > replying to the master after receiving the complete message from it).
> >
> No. Usually the next transmitter starts after receiving the last byte,
> and /then a pause/. There will always be some handling time in
> software, and may also include an explicit pause. Almost always you
> will want to do at least a minimum of checking of the incoming data
> before deciding on the next telegram to be sent out. But if you have
> very fast handling in relation to the baud rate, you will want an
> explicit pause too - protocols regularly specify a minimum pause (such
> as 3.5 character times for Modbus RTU), and you definitely want it to be
> at least one full character time to ensure no listener gets hopelessly
> out of sync.
> > Now I think of the issue related to a transmitter that delays a little
> > to turn around the direction of its transceiver, from TX to RX. Every
> > transmitter on the bus should take into account this delay and avoid
> > starting transmission too soon.
> They should, yes. The turnaround delay should be negligible in this day
> and age - if not, your software design is screwed or you have picked the
> wrong hardware. (Of course, you don't always get the choice of hardware
> you want, and programmers are often left to find ways around hardware
> design flaws.)
> >
> > So I usually implement a short delay before starting a new message
> > transmission. If the maximum expected delay of moving the direction from
> > TX to RX is 10us, I could think to use a 10us delay, but this is wrong
> > in your assumption.
> >
> Implementing an explicit delay (or being confident that your telegram
> handling code takes long enough) is a good idea.
> > If the RX interrupt is at the middle of the stop bit, I should delay the
> > new transmission of 10us + half of bit time. With 9600 this is 52us that
> > is much higher than 10us.
> >
> I made no such assumptions about timings. The figures I gave were for
> using a USB 2 based interface on a PC, where the USB polling timer is at
> 8 kHz, or 125 µs. That is half a bit time for 4 Kbaud. (I had doubled
> the frequency instead of halving it and said the baud had to be above 16
> kBaud - that shows it's good to do your own calculations and not trust
> others blindly!). At 1 MBaud (the suggested rate), the absolute fastest
> the PC could turn around the bus would be 12 character times - half a
> stop bit is irrelevant.

You are making an assumption of implementation. There is a processor in the USB cable that is implementing the UART. The driver enable control is most likely is implemented there. It would be pointless and very subject to failure, to require the main CPU to handle this timing. There's no reason to expect the driver disable to take more than a fraction of a bit time, so the "UART" needs a timing signal to indicate when the stop bit has been completed.

The timing issue is not about loading another character into the transmit FIFO. It's about controlling the driver enable.

> If you have a 9600 baud RS-485 receiver and you have a delay of 10 µs
> between reception of the last bit and the start of transmission of the
> next message, your code is wrong - by nearly two orders of magnitude.
> It is that simple.
>
> If we take Modbus RTU as an example, you should be waiting 3.5 * 10 /
> 9600 seconds at a minimum - 3.65 /milli/seconds. If you are concerned
> about exactly where the receive interrupt comes in the last stop bit,
> add another half bit time and you get 3.7 ms. The half bit time is
> negligible.

Your numbers are only relevant to Modbus. The only requirement is that no two drivers are on the bus at the same time, which requires zero delay from the end of the previous stop bit and the beginning of the next start bit. This is why the timing indication from the UART needs to be the end of the stop bit, not the middle.

> > I know the next transmitter should make some processing of the previous
> > received message, prepare and buffer the new message to transmit, so the
> > delay is somewhat automatic, but in many cases I have small 8-bits PICs
> > and full-futured Linux box on the same bus and the Linux could be very
> > fast to start the new transmission.
> >
> So put in a delay. An /appropriate/ delay.

You are thinking software, like most people do. The slaves will be in logic, so the UART will have timing information relevant to the end of bits. I don't care how the master does it. The FTDI cable is alleged to "just work". Nonetheless, I will be providing for separate send and receive buses (or call it master/slave buses). Only one slave will be addressed at a time, so no collisions there, and the master can't collide with itself.

> >>> 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. 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).
> >>>
> >>
> >> RS-485 requires them - you want to hold the bus at a stable idle state
> >> when nothing is driving it.
> >
> > But this is the goal of *bias* resistors, not termination resistors.
> >
> Yes - but see below. Bias resistors are part of the termination - it
> just means that you have terminating resistors to 5V and 0V as well as
> across the balanced pair.
> >
> >> You also want to have a bit of load so that you have some current on
> >> the bus, and thereby greater noise immunity.
> >
> > Of course, but termination resistors are usually small (around 100 ohms)
> > because they should match the impedance of the cable. If you want only
> > to introduce "some current" on the bus, you could use resistors in the
> > order of 1k, but this isn't strictly a *termination* resistor.
> >
> If you have a cable that is long enough (or speeds fast enough) that it
> needs to be treated as a transmission line with controlled impedance,
> then you do need impedance matched terminators to avoid reflections
> causing trouble. Usually you don't.
>
> A "terminating resistor" is just a "resistor at the terminator" - it
> does not imply impedance matching, or any other specific purpose. You
> pick a value (and network) appropriate for the task in hand - maybe you
> impedance matching, maybe you'd rather have larger values to reduce
> power consumption.
> >
> >>> 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.
> >
> > ST3485 says the input load of the receiver around 24k. When you connect
> > 32 slaves, the equivalent resistor would be 750 ohms, that should be
> > enough to have "some current" on the bus. If you add *termination*
> > resistors in the order of 100R on both sides, you could reduce
> > drastically the differential voltage between A and B at idle state.
> >
> If you are pushing the limits of a bus, in terms of load, distance,
> speed, cable characteristics, etc., then you need to do such
> calculations carefully and be precise in your specification of
> components, cables, topology, connectors, etc. For many buses in
> practice, they will work fine using whatever resistor you pull out your
> box of random parts. For a testbench, you are going to go for something
> between these extremes.

How long is a piece of string? By keeping the interconnecting cables short, 4" or so, and a 5 foot cable from the PC, I don't expect problems with reflections. But it is prudent to allow for them anyway. The FTDI RS-422 cable seems to have a terminator on the receiver, but not the driver and no provision to add a terminator to the driver.

Oddly enough, the RS-485 cable has a terminator that can be connected by the user, but that would be running through the cable separately from the transceiver signals, so essentially stubbed! I guess at 1 Mbps, 5 feet is less than the rise time, so not an issue. Since the interconnections between cards will be about five feet as well, it's unlikely to be an issue. The entire network will look like a lumped load, with the propagation time on the order of the rise/fall time. Even adding in a second chassis, makes the round trip twice the typical rise/fall time and unlikely to create any issues.

They sell cables that have 5 m of cable, with a round trip of 30 ns or so. I think that would still not be significant in this application. The driver rise/fall times are 15 ns typ, 25 ns max.

--

Rick C.

+-+ Get 1,000 miles of free Supercharging
+-+ Tesla referral code - https://ts.la/richard11209

SubjectRepliesAuthor
o Shared Communications Bus - RS-422 or RS-485

By: Rick C on Wed, 2 Nov 2022

93Rick C
server_pubkey.txt

rocksolid light 0.9.81
clearnet tor