This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

STM32 F411RE SPI4 Pins Not Working

I am using F411RE Nucleo board to communicate with some other devices through SPI.

My code is based on SPI LL example SPI_TwoBoards_FullDuplex_DMA in package STM32Cube_FW_F4_V1.26.0.

The original code works well. However, my app needs more than one SPI; so I tried to change SPI1 to SPI4.

The DMA and SPI configurations are showed in below:

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/**
* @brief This function configures the DMA Channels for SPI1
* @note This function is used to :
* -1- Enable DMA2 clock
* -2- Configure NVIC for DMA2 transfer complete/error interrupts
* -3- Configure the DMA2_Stream2 functional parameters
* -4- Configure the DMA2_Stream3 functional parameters
* -5- Enable DMA2 interrupts complete/error
* @param None
* @retval None
*/
void Configure_DMA(void)
{
/* DMA2 used for SPI1 Transmission
* DMA2 used for SPI1 Reception
*/
/* (1) Enable the clock of DMA2 and DMA2 */
LL_AHB1_GRP1_EnableClock(LL_AHB1_GRP1_PERIPH_DMA2);
/* (2) Configure NVIC for DMA transfer complete/error interrupts */
#ifdef USE_SPI1
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Some of the macro definitions are showed here:

Fullscreen
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
//#define USE_SPI1
#define USE_SPI4
#ifdef USE_SPI1
#define SPI SPI1
#define SPI_RX_STREAM LL_DMA_STREAM_2
#define SPI_RX_CHANNEL LL_DMA_CHANNEL_3
#define SPI_TX_STREAM LL_DMA_STREAM_3
#define SPI_TX_CHANNEL LL_DMA_CHANNEL_3
#define SPI_CLK_PIN LL_GPIO_PIN_3
#define SPI_MOSI_PIN LL_GPIO_PIN_5
#define SPI_MISO_PIN LL_GPIO_PIN_4
#endif
#ifdef USE_SPI4
#define SPI SPI4
#define SPI_RX_STREAM LL_DMA_STREAM_0
#define SPI_RX_CHANNEL LL_DMA_CHANNEL_4
#define SPI_TX_STREAM LL_DMA_STREAM_1
#define SPI_TX_CHANNEL LL_DMA_CHANNEL_4
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

The whole project works well when I enable SPI1, but does not work when SPI4 is enabled (SPI1 disabled). The problem is that I cannot see any signal on CLK, MISO, and MOSI pins.

0