I'm using teensy 4.1
Is it possible to send 32 bit data as shown here?
0b00000000000000000000000000000111 is beeing sent out (DATA-blue, CS-red, CLK-yellow)

Because currently I can only manage to get this using this SPI.h library:

and this code:
SPI1.beginTransaction(settings);
SPI1.transfer(0x00);
SPI1.transfer(0x00);
SPI1.transfer(0xFF);
SPI1.transfer(0x00);
SPI1.endTransaction();
Clock distortion after 8 bits, and CS high, is issue for me.
As far as I know teensy 4.1 processor should be able to do 32bit SPI data transfers.
Regards Mateusz
I'm using teensy 4.1
Is it possible to send 32 bit data as shown here?

0b00000000000000000000000000000111 is beeing sent out (DATA-blue, CS-red, CLK-yellow)
Because currently I can only manage to get this using this SPI.h library:

and this code:
Clock distortion after 8 bits, and CS high, is issue for me.
As far as I know teensy 4.1 processor should be able to do 32bit SPI data transfers.
Regards Mateusz