STM32 MCUs Embedded software

cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

stm32l476 disc uart DMA not working

#include "main.h"#include "uartDma.h"UART_HandleTypeDef huart2;DMA_HandleTypeDef hdma_usart2_tx;void uartStart(void){ MX_DMA_Init(); MX_USART2_UART_Init(); uint8_t pData[] = "This is Polling\r\n"; uint8_t pdata[] = "This is Dma\r\n"; HAL_UART_Tran...

Jagath by Associate II
  • 294 Views
  • 0 replies
  • 0 kudos

STM32F401 USB remote wakeup does not work

Environment:STM32F401RCUSB HID device, Full speedfreeRTOSProblem:Device can send/receive data to/from host and can be put in suspend state and resume from suspend state.However, the remote wake-up function never worksCode:My USB remote wake up log in...