DawidS - 2017-07-24

What does the uiDelayus parameter mean in SPI transfer method? Is it delay before of after SPI frame?
There is no code source available because it is in the compiled library.
I write my library for SPI device and I need the delay between first and second SPI frames 100us.
Is below code is fine in this case?

//first frames
transfer(pabyTxBuffer:=ADR(aby) , pabyRxBuffer:=ADR(aby) , udiLen:=1 , uiDelayus:=100)
...
//second and others frames
transfer(pabyTxBuffer:=ADR(aby) , pabyRxBuffer:=ADR(aby) , udiLen:=8 , uiDelayus:=0)