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

Resolved! Problem of porting FreeRTOS to STM32H573I-DK by CubeMX

Hi everyone,I have a STM32H573I-DK and try to port FreeRTOS without TrustZone to this board by CubeMX but suffered from a problem.I installed the X-CUBE-FREERTOS, set TIM17 for HAL Tick and SysTick for FreeRTOS.It will block (or crash?) in vStartFirs...

EyckHuang by Associate II
  • 1471 Views
  • 4 replies
  • 1 kudos

STM32F439 Ethernet Frame Transmit Jitter

Hello,I have some questions regarding Ethernet frame transmission.1) When is the value of the "ETH_MMCTGFCR" register increased?After calling the "HAL_ETH_TransmitFrame()" function, I noticed that the value of the "ETH_MMCTGFCR" register increased in...

2024-01-31 181125.jpg

STM32 UART stops At High Temperature

Hi,I am Using an stm32f205 on our board. All the Uarts works fine at room temperature. But when the temp increases above 58 degress, messages started get missed in the uarts or sometimes it completely stops sending messages.I am running the board at ...

JThom.15 by Associate III
  • 2674 Views
  • 10 replies
  • 6 kudos

USB gadget

 I have successfully configured USB On-The-Go (OTG) on an STM32 microcontroller to support both Abstract Control Model (ACM) and Human Interface Device (HID) protocols. I utilized the stm32_usbotg_eth_config.sh script as a reference, and the setup is...

Barak1 by Associate
  • 838 Views
  • 1 replies
  • 0 kudos

Resolved! Measuring elapsed time in nanoseconds

I need to measure the time it takes for a component to reach a certain voltage, read out with the ADC. So far I have been measuring in microseconds but it turned out that that is not precise enough.I found the following code to measure time on Stacko...

Qwyntex by Associate III
  • 11715 Views
  • 13 replies
  • 3 kudos

Needed help in ADC callback using Interrupts.

__IO volatile uint8_t ADC_ConversionFlg=0;void HAL_ADC_ConvCpltCallback(ADC_HandleTypeDef *hadc){/* Prevent unused argument(s) compilation warning *//*ADC_ConversionFlg |= 0x01;CTP=HAL_ADC_GetValue(&hadc1);} MX_ADC1_Init(); HAL_ADC_Start_IT(&hadc1); ...

Tushar_4 by Associate II
  • 1029 Views
  • 3 replies
  • 1 kudos

Resolved! HAL_StatusTypeDef function

Hi, i come across a H7 code that use HAL_StatusTypeDef , could anyone kindly advise what does the HAL_StatusTypeDef do, whats HAL_OK means? what does ret != HAL_OK mean? and what does return HAL_OK means?HAL_StatusTypeDef spi_write(reg, *pData){  HAL...