Hi,
The spi_config structure zephyr provides is as below:
struct spi_config
{
uint32_t frequency;
uint16_t operation;
uint16_t slave;
const struct spi_cs_control *cs;
};Wherein cs is initialized to the chip select pin.
In my project I have a requirement to handle 2 slaves which are exactly the same.
Herein, how can I manage 2 instances of, same slaves
And do I need to get multiple device bindings for the same spi channel..?
Thanks,
Ubaid