STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Possible bugs at UART HAL driver.

I am working with STM32429i-eval and try connect it to PC. I think that there are two mistakes at stm32f4xx_hal_uart.c. Into void HAL_UART_IRQHandler(UART_HandleTypeDef *huart)Instead of  if(huart->ErrorCode != HAL_UART_ERROR_NONE)need  if(huart->Err...

VRyza by Associate II
  • 678 Views
  • 3 replies
  • 0 kudos

Switching between thread on RTOS ?

Posted on March 29, 2017 at 04:18Everybody,I want to switch between thread on RTOS, how can I do that ?I've written down below, but it seems that it's staying on the first thread only,Thanks/* StartDefaultTask function */void StartDefaultTask(void c...

Resolved! SD with DMA works, except in callback

Hey everyone,I'm seeing something weird.I've got a working SDIO in 4 bit mode, with dma (FIFO enabled with peripheral flow controller) and using a stm32f722ze.It works perfectly. I can write a large bunch of data to the SDcard relatively quickly even...

con3 by Senior
  • 855 Views
  • 4 replies
  • 0 kudos