No output on peripheral spi device
I'm trying to control a LTC-2668 dac device, through the spi interface. The dac opperates on mode 00 and spi commands are 24 bits long. The chip select pin is manually toggled
The thing is that even though the STM produces the correct output signals, i get no output on the dac device.
Here are some pictures of the produced signals( captured on an analyzer ), spi settings and a snipet of my code.
HAL_GPIO_WritePin(ChipSelect1_GPIO_Port, ChipSelect1_Pin, GPIO_PIN_RESET);
if(HAL_SPI_Transmit(&hspi1,spiCommand , sizeof(spiCommand), 100)==HAL_OK)
{
HAL_GPIO_WritePin(ChipSelect1_GPIO_Port, ChipSelect1_Pin, GPIO_PIN_SET);
HAL_GPIO_WritePin(GPIOB, LD1_Pin|LD3_Pin, GPIO_PIN_SET);
HAL_Delay(100);
HAL_GPIO_WritePin(GPIOB, LD1_Pin|LD3_Pin, GPIO_PIN_RESET);
HAL_Delay(100);
}



