Exploring the serial I/O of a 40+ year old uP / MPU / SBC / TTL device #3329
Replies: 8 comments
-
Posted at 2023-12-28 by user156811 I'm not a expert, but my first question would be can the Pico uart driver even go that slow? I know hardware drivers have to do clock dividers to get to a certain frequency and that might be lower then the ranges it can work in. But you could try and take a jumper from your Pico TX uart lines and connect it to your RX lines. Thus created a loop in your communication. It should be a quick test to see if the device can actually produce and receive that range. If it can't i would hook up a oscilloscope and see the timing. It might be slightly off. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2023-12-28 by @allObjects @ser156811 First, thank you for reading thru and sharing your thoughts. Regarding speed, I had a similar thought: can Espruino Pico - the serial appliance of the STM32F401CDU6 - go so low down to 300 bps, but did not think about the divider issue... I should though have taken that though serious, since I know how USARTs (chips of same age) have to be configured... I also had the thought of using Espruino firmware's software serial... but it may have the very same issue. After all, it uses the same basic hardware: some timer(s), relaying on the same counters... There are server options for a next step before more serious actions have to be considered:
Hooking on a scope is an option... which I did 40+ years ago when validating the devices capabilities and putting it to service. Time fluctuations according to Espruino Poco's measurments are at it's most extreme in the range of 0.003152 thru 0.003157 (time of 1 bit), which is less than 0.2%. With that, I can comfortably exclude accuracy issues, but for sure not speed range ones. New results will be available soon. |
Beta Was this translation helpful? Give feedback.
-
Posted at 2023-12-28 by @allObjects @ser156811 Regarding hooking up scope: mentioned only the device. But hooking it to Espruino Pico USART1 and transmitting something with 300 (or 316) bauds would also provide new information, mostly so if it will go down that low... @gfwilliams mostlikely can answer that right away and would also know how accurate timing is across the bandwidth. I know that at very high frequencies differences between bit times are very course grain (see Espruino controlling LC resonance experiment in HAM Radio class, in particular, post #4). |
Beta Was this translation helpful? Give feedback.
-
Posted at 2023-12-28 by @allObjects Using software serial moved me ahead a bit and may even be the solution... Minimal change of the routine I had for hardware serial:
Console output for 0x0E byte sequence of:
With Creating a version that prints the data in decimal to show non-printable
But as @gfwilliams pointed out in USART / UART / Serial Port for software serial, there is not much processing cycles left for other things while communication is going on, such as my attempt to print the received data in hex using my generic approach, which also can handle reception of more than one byte at a time. Here the changes and the versatile (hex) output creation (complete, runnable code to load):
With output option 1, the console output was absent... (a simpler implementation for 2-digit hex output may have worked, but was not done and tried). For that reason, I built a buffering into/around the code with a routine for visualization of the buffer... shown in a next post, including the Espruino js Bitbanging solution (not using any appliances (except the timer/interrupts... as is used by setWatch, setTimeout, setInterval for that purpose). |
Beta Was this translation helpful? Give feedback.
-
Posted at 2024-01-04 by @gfwilliams Glad you got this working with software serial. I just checked the code for serial on STM32 and we call through to the STM32 API and that would appear to be fine. However, checking on a scope, just calling So you have two options:
|
Beta Was this translation helpful? Give feedback.
-
Posted at 2024-01-04 by @allObjects thanks for taking the time to read and respond... I'll give it a shot, last but not least because I'm not successful yet with 'playing back' the received data, which means that either Espruino is not producing the right bit stream or the modulation/demodulation in the original case added something that was compensated in the device's receiving software. Questions - answered them myself by reading the API doc... haha...:
Btw, I noticed that the protocol is two (2) stop bits... (explaining the 'gap' of one bit between the bytes received). I noticed that I never shared the code that does super-soft software serial in JS... Espruino JavaScript is so fast and efficient, that it can handle the 316 baud rate... Main line is:
Here the code (a bit formatted for legibility...):
Here the console output:
The code borrowed ideas from the device's implementation of reading serial input. Something next in line to simulate input for. 'Formatted' code looks a bit bloated... here the origin:
Now working on reading the data back: sending the data back to device as received before and stored in a 'file'. Even Espruino Software Serial is not producing a serial data stream accepted by the device. Playing w/ the 330 baud rate and E.setClock(...) gives me some hope until I will take out the 'big guns', like DSO... (My pride to be frugal in material but wasteful in thinking and time gets in my way for moving speedy... but it is somewhat the goal: understanding what's going on and where 'it' leaves the 'happy path'... (I'm part of the 'it'... haha...)...) ...so much for (late) Happy New Espruino Year 2024 |
Beta Was this translation helpful? Give feedback.
-
Posted at 2024-01-05 by @allObjects tried both... using 330 for baud rate failed no matter what - w/ and w/o E.setClock(). But the combination of lowering the clock rate of the UART using What properties and values do I have to use in |
Beta Was this translation helpful? Give feedback.
-
Posted at 2024-01-05 by @gfwilliams
USART2 is on PCLK1 according to the reference manual, so you'd need to use I can't be sure where USB gets its clock from, so there is some possibility that lowering the PCLK1 speed will break USB - I'm not sure |
Beta Was this translation helpful? Give feedback.
-
Posted at 2023-12-28 by @allObjects
To cut to the chase:
Question: What do I do wrong that Espruino Pico's
gets nothing for me but framing and parity errors?
To be more helpful, first some TL;DR:
I'd like to reuse - and showcase the device - but being it in the context and connectivity of more recent peripherals.
For exploration and possibly future interfacing, I picked Espruino Pico, because I have access to the device's TTL signal levels before it's fed into RS-232 drivers that do the typical -12V/+12V business or into FSK (Frequncy Shift Keying) communication over regular copper phone lines as of that time for remote operation. Commisurate with the means at that time is the speed: about 300 baud or 300 bps (bits per second) - Baud from French Baudot 5-bit code, invented 150+ years ago for telegraphy...
Espruino and Pico are a good match, for easy coding and quick to apply, and has TTL / 5V signal compatibility. Espruino software supports Serial communication with configuration option for number of data, parity and stop bits.
Unfortunately, for yet unknown reason, the code below
prints nothing but
F
s for framing andP
s for parity errors for a block of0x20
0xAA
and another block of0x20
0x55
. Looking a the signal timings, it shows that a bit is around0.003148
seconds, yielding a rate of 318 bps. 18 is about a 6% error, over the 10-1/2 sampling times this makes worst case 63% 'off-beat'. Center sampling can at best handle a 40%..45% off-beat situation, so no surprise it failed... But I'm in for a greater surprise: even with setup adjusted to 318 bps, the result is equally depressing:PF
.Since the 40+ year old device is so slow, I just used Pico and a few lines of code to find the timings including baud rate AND visualization of the signal shape... The code looks like this:
The device was setup to transmit this sequence of 0x20 0x##s bytes (ignore
var t=...
js, it overcome render challenges of fixed font text blocks in forum... how to <pre> w/ line # but w/o coloring?):The generated out put in console looks like this:
Since in above 'graph' the signal level line show NOT to time, I manually extended them according the times measured. I commented start bit, data bits 0 thru 7, odd parity bit, stop bit and the idle or byte separation 'bit'. With the extension, the signal lines make it very obvious what is going on:
End of
TL;DR
and back to the question:What is wrong with my setup of
Serial1
?Bitbanging shows that the device produces what it states... with the minor adjustment of the baud rate (which btw does not really matter, since the partner device is of the same make in hard and software (but I consider changing the device's code to be as close as possible to the 300 - or configurable - bps... after all, it does bit banging too, but no unpredictability by garbage collect or interrupts...). Bitbanging will also get me reading the device, but 40+ and the 32 Bit ST ... what ever should have outgrown that need... after all.
The device in today's money is about $1120... $290 then... Espruino Pico today cost about $25. Considering these numbers just from a point of money, would it be fair to conclude: You get what you pay for ? - The answer to that is an easy: no.
What do I do wrong in my Serial1 setup and use?
Beta Was this translation helpful? Give feedback.
All reactions