STM32 MCUs Products

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! Problem with RTC and wakeup of stm32f103

I need help with standby mode and rtc wakeup.If I set date/time and RTC-Alarm time, I don't get an RTC - interrupt.I guess this is why the stm32f103 don't wake up from deep sleep.Do anyone have an link (or code) to an example using RTC amd wakeup fro...

oe2 by Associate III
  • 1226 Views
  • 2 replies
  • 0 kudos

ISM43362 WIFI Module on B-L475E-IOT01A

I connect with the module to an Access Point and get IP. Now I have some devices connected to the same Access Point. I want to receive UDP packets from the devices.What should I do? I can connect only with TCPif (WIFI_StartServer(SOCKET, WIFI_TCP_PRO...

Resolved! Where are defined AF numbers for pins?

I have a project for H743 with three SPIs.CubeMX creates the following code for initializing SPI pins:void HAL_SPI_MspInit(SPI_HandleTypeDef* hspi) { GPIO_InitTypeDef GPIO_InitStruct = {0}; RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = {0}; if...

Pavel A. by Evangelist III
  • 536 Views
  • 2 replies
  • 0 kudos

Potential bug with SPI3/I2S3 for STM32H753ZI

Hi guys!I believe I found a bug with the SPI/I2S peripheral.The initial problem started here: https://electronics.stackexchange.com/questions/571749/function-pointers-causing-unexpected-behaviour-within-stm32h753zi-microcontrolle?noredirect=1#comment...

CLeo.1 by Senior II
  • 517 Views
  • 3 replies
  • 0 kudos

I set the MCU STM32F103C8 to 72 MHz (8 MHz external oscillator). However, the function does not give exactly 1 ms of time, but a value approximately 4 times larger. Any suggestion?

void delay_ms ( unsigned int i ){  unsigned int temp;  SysTick-> LOAD = 9000 * i; // if subtle, the SysTick-> LOAd = 9 * i;  SysTick->CTRL = 0x01;  SysTick->VAL = 0;  do{ temp = SysTick-> CTRL; // read the current countdown value  }while ( ( temp & 0...

0693W00000Bc4cEQAR.png
WRain.1 by Associate
  • 617 Views
  • 2 replies
  • 0 kudos

SPI pin MISO not going to low after sending data to ADC

Hello! I am trying to communicate with ads1118 through spi3 using HAL library and STM32F205. According to datasheet, after sending the configuration data, we must wait for MISO to go low then we'll be able to retrieve data from the chip. But the MISO...

0693W00000Bc4WuQAJ.png 0693W00000Bc4WzQAJ.png 0693W00000Bc4XJQAZ.png 0693W00000Bc4Y7QAJ.png
Kolab by Senior
  • 334 Views
  • 0 replies
  • 0 kudos

How can I find SDIO problem?

Hey guys.Im using stm32f103rct6 and sdio for sd card.My problem is that when using fatfs functions i get different errors that are random. For example once it gives me disk error but the next time it gives me disk not ready in a same operation.How ca...