Hi all,
struct spi_config {
uint32_t frequency;
uint16_t operation;
uint16_t slave;
const struct spi_cs_control *cs;
};
in documentation, it says "@param slave is the slave number from 0 to host controller slave limit." which means number of slaves connected to spi master.
correct me if my understanding is wrong.