STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Resolved! I find a bug in HAL_ETH_IRQHandler function. the function() skip all the if else,then return. have anyone met this question befor?

void HAL_ETH_IRQHandler(ETH_HandleTypeDef *heth){  /* Packet received */  if (__HAL_ETH_DMA_GET_IT(heth, ETH_DMACSR_RI))  {    if (__HAL_ETH_DMA_GET_IT_SOURCE(heth, ETH_DMACIER_RIE))    {​...}}​I have met this question: this function cannot run to an...

QLiu.3 by Associate
  • 729 Views
  • 1 replies
  • 0 kudos

Bootloader in STM32 MCU.

What does it mean ->( the bootloader code begins to scan the USARTx_RX line pin, waiting to receive the 0x7F data frame: a start bit, 0x7F data bits, even parity bit and a stop bit.)?I'm totally confused understanding this line, how to configure it? ...