Question
STM32L01x SPI Transmitt 32bit
Hello Guys,
I'm new here and more from the hardware side.
My problem is, I have a SPI ADC (ADS8665) and for it to work, it needs 32bit commands.
So I tried this:
uint8_t buff[4];
buff[0] = 0xC8;
buff[1] = 0x00;
buff[2] = 0x00;
buff[3] = 0xC8;
HAL_SPI_Transmit(&hspi1, buff, sizeof(buff), 1000);But then the 32bit are sent in 4x 8bit with a delay in between each paket and the ADC does not recognize the command.
can someone help me get rid of these delays?
thanks in advance.
