Hello,I'm currently programing a self designed sensor node with a HTS221. I've decided to use SPI to communicate with it (SPI half-duplex master)Here are the settings:static void MX_SPI2_Init(void)
{
/* USER CODE BEGIN SPI2_Init 0 */
/* USER ...
The device is configured (by CubeMX) as half-duplex SPI (3 wires) since it was the only SPI option available for HTS221. I have one software NSS, a CLK and a MOSI (which is supposed to be switching role during a transfert).I'm not sure to understand ...