Thank You for attention
The KSDK is the 2.e, the directory name is SDK_2.3.0_MKV58F1M0xxx24.
I have a working solution I got initializing the DMA by hand, without using the DMA object.
The limit of the solution offered by the KDSK is that evey transfer needs to recall the DSPI_MasterTransferEDMA(...) reinitializing the registers with the same values. For repeating service it is too much expensive.
There is no way with actual SDK to recycle the previous settings. And the call costs 10uSecs.
Additionally most of the time the DMA is used endlessly, so the bit of auto stop need to be disabled and the SLAST and DLAST simply roll back.
This approach is the one that is the most used, at least the way I see for my applications. And for this usage no support is provided, the DSPI_MasterTransferEDMA(...) enables the auto stop bit or rely on the scatter gather.
Now the application is working so I have an optimal solution reading all of the ADC and writing all of the DAC outputs without any uC intervention.
I prepared an array of PUSHR and I feed in this way the DMA transfer, that automathically cycles the transfer values.
It is important in my opinion to provide this approach in SDK.
For now I am happy with what I have,,
Thank You
Pietro