Author Topic: Generic clocked serial protocol on STM32?  (Read 4726 times)

0 Members and 5 Guests are viewing this topic.

Offline jmwTopic starter

  • Frequent Contributor
  • **
  • Posts: 296
  • Country: us
Generic clocked serial protocol on STM32?
« on: June 20, 2020, 07:05:29 am »
I want to implement the serial protocol for the TI TLC5926 for STM32. The TLC5926 is a LED driver that's functionally a shift register with some extra features for current control. There's a clock, serial data in, a latch enable (LE) pin that copies the shift registers to the output drivers, and an output enable (OE) pin that turns on/off all the output drivers.

I made a quick prototype using a USART peripheral, which works, but I also need to control some of the extra features, which involves twiddling the OE and LE lines in some specific, timed sequences synchronous with the clock. It's no longer exactly a single, byte-framed serial line that can be managed using USART, and in case, USART wasn't a perfect match since the serial protocol doesn't need stop bits for example.

What's the preferred way of implementing this on STM32? My thoughts are to use a timer to generate the clock, and then toggle GPIOs on interrupts on the falling edge. Is this the best way of doing it? If timers are the core of how it will work, can someone tell me a bit more about which modes to use (timers are complicated and I have yet to master them)?
 

Offline ozcar

  • Frequent Contributor
  • **
  • Posts: 338
  • Country: au
Re: Generic clocked serial protocol on STM32?
« Reply #1 on: June 20, 2020, 08:33:16 am »
How were you generating the clock when using the USART?

Maybe if you gave a bit more info on the sequences required and what speed you need, somebody could give some ideas.

I found some STM32 example code that talks to a board using TLC5926 here:

https://microcontrollershop.com/product_info.php?products_id=7167

From a quick look, they appear to use an eclectic mix of SPI, bit banging, and with a timer thrown in for good measure.
 

Offline jmwTopic starter

  • Frequent Contributor
  • **
  • Posts: 296
  • Country: us
Re: Generic clocked serial protocol on STM32?
« Reply #2 on: June 20, 2020, 04:58:27 pm »
I don't need to generate a clock for the USART, just configure it in synchronous mode and it derives its clock from the peripheral clock behind the scenes.

This is a timing diagram of the sequences used:


Thanks for the pointer to that example code, I'll have a look. I didn't really say in the original post, but I'd like to do it a little nicer than bit-banging in the main loop.
 

Offline ucanel

  • Regular Contributor
  • *
  • Posts: 134
  • Country: tr
Re: Generic clocked serial protocol on STM32?
« Reply #3 on: June 21, 2020, 12:34:56 am »
I am not sure but maybe this may done with two spi.
Stm32 has very useful dma features,
you may send all the data with spi using dma
and you would not have to do anything in your main code.

As an another way:
Stm32 has dma feature that spits out whole 16 bits to a PortX with dma.
If you have a whole port to spare and enough ram or flash memory space you can use this method.
In that case you will have to create all the needed states of the port to do what you wish to do according to the desired signals by TLC5926.
As a stm32 gpio dma example you may take a look at this:
https://justanotherelectronicsblog.com/?p=201

I have tried gpio dma and it is very useful.
You may trigger gpio transfer intervals via timer.
 

Offline ozcar

  • Frequent Contributor
  • **
  • Posts: 338
  • Country: au
Re: Generic clocked serial protocol on STM32?
« Reply #4 on: June 21, 2020, 07:24:25 am »

As an another way:
Stm32 has dma feature that spits out whole 16 bits to a PortX with dma.
If you have a whole port to spare and enough ram or flash memory space you can use this method.

Wouldn't you want to do 32 bit transfers so you can write to either half of the GPIO BSRR?

At least that is what I have done before - in fact I just butchered something similar I had here and managed to get something looking like the required “switch to special mode”. I couldn't get it to go any faster than around 2.5MHz on the “blue pill” I had lying here though, but did not try to see why.

That was done sending this to one of the GPIO BSRRs. This is using lines 0,1,2, but of course any could be used as long as they are on the same port, and it does not disturb the other lines so you don't need exclusive use of the whole port:

Code: [Select]
const uint32_t modespecial[11] = {
                                   GPIO_BSRR_BR0 | GPIO_BSRR_BS1 | GPIO_BSRR_BR2,
   GPIO_BSRR_BS0,   // 1
   GPIO_BSRR_BR0 | GPIO_BSRR_BR1,
   GPIO_BSRR_BS0,   // 2
   GPIO_BSRR_BR0 | GPIO_BSRR_BS1,
   GPIO_BSRR_BS0,   // 3
   GPIO_BSRR_BR0 | GPIO_BSRR_BS2,
   GPIO_BSRR_BS0,   // 4
   GPIO_BSRR_BR0 | GPIO_BSRR_BR2,
   GPIO_BSRR_BS0,   // 5
   GPIO_BSRR_BR0    // done
                                 };


 

Offline ucanel

  • Regular Contributor
  • *
  • Posts: 134
  • Country: tr
Re: Generic clocked serial protocol on STM32?
« Reply #5 on: June 21, 2020, 11:11:57 am »
...
Wouldn't you want to do 32 bit transfers so you can write to either half of the GPIO BSRR?
...
Yes, that is a good approach thanks for pointing out,
i did not think of that.

As a side note:
https://gist.github.com/iwalpola/6c36c9573fd322a268ce890a118571ca
Quote
Combination of BRR and BSRR
Since BRR and BSRR are opposite of each other, you can use both if you don't want to do the bit shift left operation .

In this case, to set and clear A2, A12, A13 while preserving the state of all other pins in the port, the code is:
Code: [Select]
//Set A2, A12, A13 (HIGH)
GPIOA->regs->BSRR = 0b0011000000000100; //lower 16 bits
//Clear A2, A12, A13 (LOW)
GPIOA->regs->BRR = 0b0011000000000100; //lower 16 bits

Using this method with dma spits out gpio values
weird protocols may be achieved without effecting all gpio pins.

Quote
...
I couldn't get it to go any faster than around 2.5MHz on the “blue pill” I had lying here though, but did not try to see why.
...
It may easily be about clock configuration of the gpio
or the time taken by code that shifts and calculates the state of the gpio.
 

Offline ozcar

  • Frequent Contributor
  • **
  • Posts: 338
  • Country: au
Re: Generic clocked serial protocol on STM32?
« Reply #6 on: June 21, 2020, 09:13:58 pm »
...

Using this method with dma spits out gpio values
weird protocols may be achieved without effecting all gpio pins.

Quote
...
I couldn't get it to go any faster than around 2.5MHz on the “blue pill” I had lying here though, but did not try to see why.
...
It may easily be about clock configuration of the gpio
or the time taken by code that shifts and calculates the state of the gpio.

I've just realised that maybe I was not clear about exactly what I did there. I was using DMA there (triggered by a timer) to transfer the “modespecial” array to the BSRR.

I just tried doing this instead:

Code: [Select]
      uint32_t *p,*e;
      for ( p=modespecial, e=p+11; p<e; GPIOA->BSRR = *p++);

That saw the clock running at up to 18MHz. I say “up to”, because the first 2 (why 2??) clock pulses were consistently slower than the last three.

But then this is definitely contrary to the stated aim of avoiding bit banging.
 

Online abyrvalg

  • Frequent Contributor
  • **
  • Posts: 836
  • Country: es
Re: Generic clocked serial protocol on STM32?
« Reply #7 on: June 21, 2020, 10:05:04 pm »
DMA shares the data bus with the CPU, so it will not use every clock cycle. There is a priority setting that can be tweaked.
Another option is to use multiple SPI modules with one configured to master and connected to clk/sdi/sdo of TLC, others configured to slaves with their clock inputs connected to master’s output and data MOSIs connected to LE and OE. You load the data representing LE/OE patterns into slaves tx regs, then fire a data transfer on the master - slaves will output their data synchronously to the master clk out.
 

Offline Elasia

  • Frequent Contributor
  • **
  • Posts: 726
  • Country: us
Re: Generic clocked serial protocol on STM32?
« Reply #8 on: June 21, 2020, 11:51:05 pm »
I just happened to be browsing by and saw this.. i use the same chip, bit bang it

enjoy

bool Loop(void)
{
    if (lSetLEDs)
    {
        IO_LED_CLK_Toggle();
       
        switch (lLEDCounter0)
        {
            case 0:
                IO_LED_CLK_SetLow();      // Set Clock Low
                IO_LED_DAT_SetLow();      // Set Data Low
                lLEDCounter0++;
                break;
            case 1:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 2:
                // Clock Low
                lLEDCounter0++;
                break;
            case 3:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 4:
                // Clock Low
                lLEDCounter0++;
                break;
            case 5:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 6:
                // Clock Low
                lLEDCounter0++;
                break;
            case 7:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 8:
                // Clock Low
                lLEDCounter0++;
                break;
            case 9:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 10:
                // Clock Low
                lLEDCounter0++;
                break;
            case 11:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 12:
                // Clock Low
                lLEDCounter0++;
                break;
            case 13:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 14:
                // Clock Low
                lLEDCounter0++;
                break;
            case 15:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 16:
                // Clock Low
                lLEDCounter0++;
                break;
            case 17:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 18:
                // Clock Low
                lLEDCounter0++;
                break;
            case 19:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 20:
                // Clock Low
                lLEDCounter0++;
                break;
            case 21:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 22:
                // Clock Low
                lLEDCounter0++;
                break;
            case 23:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 24:
                // Clock Low
                lLEDCounter0++;
                break;
            case 25:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 26:
                // Clock Low
                lLEDCounter0++;
                break;
            case 27:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 28:
                // Clock Low
                lLEDCounter0++;
                break;
            case 29:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 30:
                // Clock Low
                lLEDCounter0++;
                break;
            case 31:
                // Clock High
                IO_LED_DAT_LAT = 0;  // set high 1 or low 0
                lLEDCounter0++;
                break;
            case 32:
                // Clock Low
                lLEDCounter0++;
                break;
            case 33:
                // Clock High
                // Set Latch
                IO_LED_LE_SetHigh();
                lLEDCounter0++;
                break;
            case 34:
                // Clock Low
                // End Latch
                IO_LED_LE_SetLow();
                lLEDCounter0++;
                break;
            case 35:
                // Clock High
                lLEDCounter0++;
                break;
            case 36:
                // Clock Low
                lLEDCounter0++;
                break;
            case 37:
                lLEDCounter0 = 0;
                lSetLEDs = 0;
                IO_LED_OE_SetLow();  // Enable current flow
                return true;
                break;
            default:
                lLEDCounter0 = 0;
                lSetLEDs = 0;
        }
    }
   
    return false;
}
 
The following users thanked this post: jmw

Offline ozcar

  • Frequent Contributor
  • **
  • Posts: 338
  • Country: au
Re: Generic clocked serial protocol on STM32?
« Reply #9 on: June 22, 2020, 07:18:53 am »
...
I was using DMA there (triggered by a timer) to transfer the “modespecial” array to the BSRR.

I had a bit of an afterthought...

As I was apparently bumping into the limits of what the DMA could do, I tried without using the timer at all, by just setting DMA for memory-to-memory.

That gives one transfer per 139ns resulting in clock frequency of 3.6MHz.
 

Offline ucanel

  • Regular Contributor
  • *
  • Posts: 134
  • Country: tr
Re: Generic clocked serial protocol on STM32?
« Reply #10 on: June 25, 2020, 10:01:39 pm »
@ozcar
According to the AN4666
Parallel synchronous transmission using GPIO and DMA
at table 2 and table 5
document says achievable pin frequency is up to 10MHz for
cpu running at 80MHz,
document is for STM32L4 and STM32F4.

I have not examine the document for where is these clock values comes from.

https://www.google.com/url?sa=t&source=web&rct=j&url=https://www.st.com/resource/en/application_note/dm00169730-parallel-synchronous-transmission-using-gpio-and-dma-stmicroelectronics.pdf&ved=2ahUKEwjqktn99p3qAhXS-yoKHSrzDm4QFjAAegQIBxAC&usg=AOvVaw0tJyZqBQnNJoi3XcYrdK8v
 

Offline ozcar

  • Frequent Contributor
  • **
  • Posts: 338
  • Country: au
Re: Generic clocked serial protocol on STM32?
« Reply #11 on: June 26, 2020, 02:27:58 am »
...
document says achievable pin frequency is up to 10MHz for
cpu running at 80MHz,
document is for STM32L4 and STM32F4.

I just tried mem to mem DMA (so no timer) on a F407 with CPU & AHB bus 168MHz, and got 21 MHz clock (168/8), that is one transfer to BSRR every 24ns. I did see the pulses stretched at times, presumably when the DMA stream had to wait for access to the bus.
 

Online abyrvalg

  • Frequent Contributor
  • **
  • Posts: 836
  • Country: es
Re: Generic clocked serial protocol on STM32?
« Reply #12 on: June 26, 2020, 06:36:50 am »
You can try freeing the bus by setting DMA to fire a completion interrupt, start the transfer, execute WFI instruction - it will stall the core until interrupt.
 

Offline jmwTopic starter

  • Frequent Contributor
  • **
  • Posts: 296
  • Country: us
Re: Generic clocked serial protocol on STM32?
« Reply #13 on: June 27, 2020, 06:12:42 pm »
DMA to the BSRR looks very cool, but using 4 bytes of memory for every clock half-cycle seems heavyweight especially if used to clock out long strings of serial data. I worked up my own prototype over the last 2 days and it seems to work well. It's sort of in between main loop bit-banging and hands-off DMA.

  • It uses a timer in PWM mode to generate the clock.
  • PWM is set up so the falling edge is aligned with the timer update event, and the interrupt handler loads outputs into GPIOs at that time.
  • When the last bit is clocked out, the clock output is disabled and another timer is used to generate a one-shot pulse on LE.
  • The OE pin is usually a PWM output for dimming, but is temporarily turned into a GPIO when the special mode sequences are output.
 
The following users thanked this post: ucanel

Offline aheid

  • Regular Contributor
  • *
  • Posts: 245
  • Country: no
Re: Generic clocked serial protocol on STM32?
« Reply #14 on: June 28, 2020, 03:12:14 am »
One idea that came to mind was using a timer in PWM mode and use DMA to update the pulse (duty cycle) value. For the extra inputs maybe slaved timers could work.

No idea if this would be any good but...
 

Offline Simon

  • Global Moderator
  • *****
  • Posts: 18022
  • Country: gb
  • Did that just blow up? No? might work after all !!
    • Simon's Electronics
Re: Generic clocked serial protocol on STM32?
« Reply #15 on: June 28, 2020, 09:07:22 pm »
You seem to be a victim of political correctness that wanted to get rid of master/slave terminology and therefore did not call it SPI either but just serial port. It's SPI not USART, SPI is a serial port much simpler than traditional serial ports meant for more complex comms. SDI is MOSI (master out slave in) and the error checking output SDO is MISO (master in slave out). You can create an array variable of 8 bit variables and with interrupts keep loading the data buffer.

Most serial ports have a transmit shift register and a transmit buffer register. The shift register is what the data is sent out from one bit at a time which in the case of SPI is the same as the receive register as the data changes around from master to slave and from slave back to master and in a normal two way communication the master would start the transaction and if necessary put junk into the transmit buffer to get a message sent so that the slave is in turn to send one back. This is why they talk about error checking as you get back the data you send and check it's still the same.

You do not necessarily need to connect the MISO pins together. So you usually have a buffer empty interrupt and a data transmitted complete interrupt. You dump the first byte into the transmit buffer and instantly this is put into the shift register whereupon the data buffer empty interrupt fires and you put the next byte of your array in and so on, every time a byte completes transmission the buffer dumps the byte you just put in into the shift register and demands more data so that you put the next byte in while the last is being sent. You use an array of bytes so that you can increment the index on the array variable each time you put a byte into the buffer until you run out of elements. Quite simple really. I doubt you have to meet any minimum speed for the transmission, it's SPI, it all works just as fast as you clock it.
 

Offline jmwTopic starter

  • Frequent Contributor
  • **
  • Posts: 296
  • Country: us
Re: Generic clocked serial protocol on STM32?
« Reply #16 on: June 28, 2020, 09:27:13 pm »
You seem to be a victim of political correctness that wanted to get rid of master/slave terminology and therefore did not call it SPI either but just serial port. It's SPI not USART, SPI is a serial port much simpler than traditional serial ports meant for more complex comms. SDI is MOSI (master out slave in) and the error checking output SDO is MISO (master in slave out). You can create an array variable of 8 bit variables and with interrupts keep loading the data buffer.

Political correctness? Nah, I just read the datasheet. It's technically not SPI because the MISO could switch between one of three pins (SDO, LE, or OE). 99% of the time it's the SDO pin and you could use SPI (or USART since stop bits are harmless) but you'll still need to do something custom for the special sequences that require synchronized pulses on the other two lines. There's clearly a number of ways to get it done:

  • Bit-bang everything
  • Use a SPI (or USART) peripheral, and bit-bang the special sequences
  • Emulate a peripheral shift register through GPIOs and timer interrupt handler
  • DMA transfers to the BSRR for every output bit
 

Offline Simon

  • Global Moderator
  • *****
  • Posts: 18022
  • Country: gb
  • Did that just blow up? No? might work after all !!
    • Simon's Electronics
Re: Generic clocked serial protocol on STM32?
« Reply #17 on: June 28, 2020, 09:37:13 pm »
Without reading it in detail I think you are refering to the pin that latches the data to the outputs once the register has been filled? Just use a GPIO during the interrupt. Interrupt says that the data has been shifted, so you strobe the load data to outputs on the LED controller and then move onto the next byte. The SPI clock should only run when the master transmits, until you load the next byte it can't continue to transmit so halts the clock. If they have made it more complicated than that I'd find another driver, loads of them out there, i was looking at something similar not long ago that I did not use but it was not this complicated.
 

Offline jmwTopic starter

  • Frequent Contributor
  • **
  • Posts: 296
  • Country: us
Re: Generic clocked serial protocol on STM32?
« Reply #18 on: June 28, 2020, 09:47:06 pm »
Right, that's a reasonable way to handle the output latch signal. But there's more with this chip: you can adjust the current gain by sending it a magic clocked sequence on the LE and OE pins, then shifting in a 8-bit gain factor. The question is how to handle every use case of this device. Having tested my idea (#3 on my earlier list), I'm leaning toward #2 now. The interrupt handler and GPIO setting limits the output clock speed, and having a hardware shift register is going to be faster.
 

Offline Simon

  • Global Moderator
  • *****
  • Posts: 18022
  • Country: gb
  • Did that just blow up? No? might work after all !!
    • Simon's Electronics
Re: Generic clocked serial protocol on STM32?
« Reply #19 on: June 29, 2020, 06:57:33 am »
It sounds like they are trying to be too clever. These devices are meant to be cheap conveniences that save you a massive pain in the ass of I/O nightmare when you need to drive many LED's. Typically you can cascade them with the data out connected to the data in of another chip with a string as long as you like limited only by the refresh rate you want and the speed you can get the data sent through. To be honest the LED brightness control is a nice to have but in order to not make a chip that is too different from it's competitors they have gone and made a mess. If you want to control the brightness then just control the brightness, you are the one powering the LED's so control the power, I don't know if you can PWM the LED supply as these appear to be constant current sinks but should work, failing that a controllable voltage regulator or for efficiencies sake a SMPS. I see a resistor pin for current setting, anything you can do with that ? i believe a mosfet with a couple or resistors makes a half decent voltage controlled resistor. You can turn PWM outputs from your micro into voltages with a low pass filter.
 

Offline capt bullshot

  • Super Contributor
  • ***
  • Posts: 3033
  • Country: de
    • Mostly useless stuff, but nice to have: wunderkis.de
Re: Generic clocked serial protocol on STM32?
« Reply #20 on: June 29, 2020, 09:37:26 am »
Right, that's a reasonable way to handle the output latch signal. But there's more with this chip: you can adjust the current gain by sending it a magic clocked sequence on the LE and OE pins, then shifting in a 8-bit gain factor. The question is how to handle every use case of this device. Having tested my idea (#3 on my earlier list), I'm leaning toward #2 now. The interrupt handler and GPIO setting limits the output clock speed, and having a hardware shift register is going to be faster.

Having done various of the mentioned method before (including the DMA-to-GPIO method, which is quite nice to produce a constant data stream to drive e.g. an LED matrix or DACs), here's my two cents:

I'd suspect this special mode wouldn't be use too often. So under this assumption, I'd use an SPI or USART to shift out the data, and revert to bit-banging for the special mode. In case the "regular" date aren't updated too often also, I'd bit-bang the whole thing. Usually bit-banging is implemented faster (in terms of your time spent for writing the code) than fiddling with all the special modes of the peripherals to achieve a non-standard protocol. So unless you are under real-time or performance constraints, just use bit-banging. For one special case, I've re-used some old bit-banging I2C code instead of using the buggy I2C peripheral to save days of debugging ;)

« Last Edit: June 29, 2020, 09:39:37 am by capt bullshot »
Safety devices hinder evolution
 
The following users thanked this post: jmw, ucanel

Offline Simon

  • Global Moderator
  • *****
  • Posts: 18022
  • Country: gb
  • Did that just blow up? No? might work after all !!
    • Simon's Electronics
Re: Generic clocked serial protocol on STM32?
« Reply #21 on: June 29, 2020, 11:33:20 am »
If you are familiar with SPI on your chip it should be a doddle. I spent several days agonizing over the SPI on the SAMC, I did not come out with any production code but some knowledge and experience of how to tackle such peripheral handling. to bit bang you need to use delays and hold up your application or start writing interrupt driven code with a timer at which point you have just written an unofficial SPI library that was more work and less efficient than the right tool for the job.
 

Offline jmwTopic starter

  • Frequent Contributor
  • **
  • Posts: 296
  • Country: us
Re: Generic clocked serial protocol on STM32?
« Reply #22 on: June 29, 2020, 04:31:13 pm »
I'd suspect this special mode wouldn't be use too often. So under this assumption, I'd use an SPI or USART to shift out the data, and revert to bit-banging for the special mode. In case the "regular" date aren't updated too often also, I'd bit-bang the whole thing. Usually bit-banging is implemented faster (in terms of your time spent for writing the code) than fiddling with all the special modes of the peripherals to achieve a non-standard protocol. So unless you are under real-time or performance constraints, just use bit-banging. For one special case, I've re-used some old bit-banging I2C code instead of using the buggy I2C peripheral to save days of debugging ;)

Yep, that's what I've since tried, SPI in transmit-only mode with DMA transfers, and the special sequences bit-banged. It's reliably clocking out data at 16 MHz and I'm much more happy with the result than trying to set GPIOs on interrupt.
 

Offline Bassman59

  • Super Contributor
  • ***
  • Posts: 2501
  • Country: us
  • Yes, I do this for a living
Re: Generic clocked serial protocol on STM32?
« Reply #23 on: June 29, 2020, 06:43:06 pm »
You seem to be a victim of political correctness that wanted to get rid of master/slave terminology and therefore did not call it SPI either but just serial port. It's SPI not USART, SPI is a serial port much simpler than traditional serial ports meant for more complex comms. SDI is MOSI (master out slave in) and the error checking output SDO is MISO (master in slave out).

Actually, it's not SPI. It is a "serial peripheral interface," but it's not SPI in the usual sense of a clock, a chip select, and a data line in each direction synchronous to that clock and valid when the chip select is asserted. And there's no such thing as an SPI "spec," just that usual way of doing it.

There are so many variants on the simple synchronous serial interface that I'm genuinely surprised when I come across a peripheral that is indeed "SPI." Thankfully, most of my work is in FPGAs so I can design the interface to work as the peripheral requires and not have to cajole a microcontroller's synchronous serial port to do what is needed.

Right now I'm looking at a thing that uses what the chip manufacturer calls "SPI" to load registers. But it's a shift register that's 384 (!) bits long, and instead of a chip select, there's a sync signal you assert to latch the shifted data into the registers. In the FPGA that calls for daisy-chaining a bunch of SRL32s. I might just use a dual-port BRAM for this -- one bit wide on the shifter side and 8 or 16 bits wide on the other side so it can be loaded.
 

Offline Simon

  • Global Moderator
  • *****
  • Posts: 18022
  • Country: gb
  • Did that just blow up? No? might work after all !!
    • Simon's Electronics
Re: Generic clocked serial protocol on STM32?
« Reply #24 on: June 29, 2020, 08:12:32 pm »
On the one hand you say there is no official spec on the other you differentiate between actual and SPI like chips. Which one is it? I have never seen any documentation about SPI other than the blurbs people put together online and what the micro controller datasheets tell me. If the micro can do it and it's beneficial great but another may not. Some micros may have bigger shift registers other are limited to the common and therefore deemed to be official 8 or 9 bits. The SAMC has address recognition on it's "SPI" interface, can they still call it SPI with this non standard feature - oh wait there is no standard and why is that feature not available for the actual usart? Why does the lin mode of the USART have auto baud syncing, why can't I use that on RS485/UART mode? oh wait nothing really stops me sticking an RS485 transciver on a lin interface providing i write my code to handle the direction which is why you do on RS485 anyway when the MCU does not "officially" support RS485 by which they mean saving you one line of code to assert the receive or transmit mode in the application code.

Every chip has various options covering a minimum that everyone else does with some more bells and whistles. The data input on the master is often an option to be enabled because often like in this case or little LCD's there is no data to come back so you save a pin rather than be forced to not use it for SPI but not as GPIO either.
 


Share me

Digg  Facebook  SlashDot  Delicious  Technorati  Twitter  Google  Yahoo
Smf