UART can not DMA TO SRAM2 ?
Posted on January 03, 2018 at 14:35uint8_t *pSRAM = (uint8_t*)SRAM2_BASE; HAL_UART_Receive_DMA(&huart2,pSRAM ,25); // uses DMA1This code Does not put byte on SRAM2 when UART2 receives data. but below works uint8_t *pSRAM = (uint8_t*)SRAM1_BASE;HAL_U...