about gpdma transmission size
I am porting code from G473 to U575 because I need more flash and ram.
Then I meet some issues on gpdma transmission size.
For G473, I use dma to transfer data to timer ARR likes:
uint16_t buf[65536] = { ..... };
HAL_TIM_Base_Start_DMA(&htim1, (uint32_t *)buf, 65536);
For U575, the code doesn't work because the size have to be 65536 * sizeof(uint16_t), not the number of buf.
Is there any way to figure it out?
