bypass HAL fro spi dma transfer
Hi I'm looking to possibly skip the HAL overheads to sent an SPI DMA transfer.
basically I want to do this
HAL_SPI_TransmitReceive_DMA(&hspi5, (uint16_t*) &data_to_send, (uint16_t*) &FromTheADC, sizeof(data_to_send));
without the HAL overhead that seems to actually be quite a bit. I'd hope it would just be a matter of set the pointer, set the register bits, while complete.
Currently I'm trying to go thru the HAL code and remove what I do not need but this seems to be an overkill. Most examples I find out there are for HAL but it would help if I knew what to look for.
Working with the stm32h7 chip.
