STM32 MCUs Products

Ask questions, find answers, and share insights on STM32 products and their technical features.

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

VERY SLOW QUADSPI READ ACCESS WITH A NOR FLASH CHIP

Posted on May 23, 2018 at 20:21Hi, all. I am using a STM32F765VGT6 chip accessing a Macronix MX25L51245GZ2I 512Mbit (64MByte) NOR FLASH chip over the QUADSPI interface. I am using the HAL QUAD SPI driver. The AHB bus is running at 216MHz.The problem...

How to de-activate HAL_I2C_Slave_Receive_IT()

Posted on April 03, 2018 at 22:56I have a slave device that is monitoring the I2C bus for its address from a master. This was done using the API HAL_I2C_Slave_Receive_IT(). This works successfully. My question is - if you want the slave device to st...

Ed Boris by Associate
  • 1763 Views
  • 7 replies
  • 2 kudos

SDADC in STM32F373vct6

hello everybody, I'm a 4th years student and now I'm interesting in stm32. I've started a small project which use SDADC of STM32f373vct6. I've read the referrent manual and configure it as described. But I cant get any result to send through USART1. ...

HardFault Exception

Can someone translate this, and dumb it down for me a little please?I am just trying to get my very basic, very simple SPI slave to receive a bunch of bytes from a PC application using interrupts.After receiving the first byte the code goes into the ...

za kia by Associate II
  • 3953 Views
  • 3 replies
  • 0 kudos

QSPI Chips

Posted on April 10, 2018 at 05:58Hi,Now I am using STM32F769NI Discovery Board. The board uses MX25L51245GZ2I-10G chip and I can't buy this chip for prototyping.Please advise me a direct replacement chip so that I don't need to change the code.Thank...

STATE SPI READY - HAL Driver

Hello,I am working on a code that uses the HAL library for SPI communication. But I have a problem with SPI's state-checking routine.void libera_escrita(void){ SPI_TxBuffer[0] = 6; HAL_GPIO_WritePin(GPIOC, CS_Pin, GPIO_PIN_RESET); while (HAL_SPI_GetS...