Loading...
 

SW4STM32 and SW4Linux fully supports the STM32MP1 asymmetric multicore Cortex/A7+M4 MPUs

   With System Workbench for Linux, Embedded Linux on the STM32MP1 family of MPUs from ST was never as simple to build and maintain, even for newcomers in the Linux world. And, if you install System Workbench for Linux in System Workbench for STM32 you can seamlessly develop and debug asymmetric applications running partly on Linux, partly on the Cortex-M4.
You can get more information from the ac6-tools website and download (registration required) various documents highlighting:

System Workbench for STM32


How to implement a proprietary SPI protocol on STM32F767ZI

Normally it is not a great deal to implement a SPI interface with Nucleon STM32F767ZI. SPI functions are pre-implemented.

But in my case the slave doesn’t give the expected response as long the SPI frames have not special delimiters between some frames. See the picture in the attachment. The red encirceled MOSI pulses without SLK (clock) signals are need.

I used the code example from the CUBE “STM32Cube_FW_F7_V1.11.0” called “SPI_FullDuplex_ComIT”

I configured the SPI Handler as follows.

/*##-1- Configure the SPI peripheral #######################################*/
/* Set the SPI parameters */
SpiHandle.Instance = SPIx;
SpiHandle.Init.BaudRatePrescaler = SPI_BAUDRATEPRESCALER_16;
SpiHandle.Init.Direction = SPI_DIRECTION_2LINES;
SpiHandle.Init.CLKPhase = SPI_PHASE_2EDGE;
SpiHandle.Init.CLKPolarity = SPI_POLARITY_HIGH;
SpiHandle.Init.DataSize = SPI_DATASIZE_8BIT;
SpiHandle.Init.FirstBit = SPI_FIRSTBIT_MSB;
SpiHandle.Init.TIMode = SPI_TIMODE_DISABLE;
SpiHandle.Init.CRCCalculation = SPI_CRCCALCULATION_DISABLE;
SpiHandle.Init.CRCPolynomial = 7;
SpiHandle.Init.NSS = SPI_NSS_SOFT;

CPOL=1 and CPHA=1

But I have no idea how to realize the MOSI HIGH pulses between the SPI frames without a CLK signal. As long SPI is enabled I have no direct access to the MOSI Pin. So tried to disable SPI by means of HAL_SPI_DeInit( ...) in order to toggle the MOSI output pin from LOW to HIGH and back to LOW. Then I re-enabled the SPI function. But this method has the effect that the CLK signal which should remain on HIGH drops to LOW. The SPI re-initialisation causes then a rising CLK edge which is then interpreted as an extra bit at the receiver side.

What can I do to add a MOSI pulse between two frames without underlaying clock signal?

I already tried to implement a totally own SPI driver by toggeling the CLK signal with set and reset commands. But this is to slow for my application which requires a datarate of 6 Mbit/s.

SPI With Delimiters SPI signal with delimetersQuestion