-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: support for SPI with no CS #384
Comments
I can confirm from spi_master.h where what you say is documented: But actually in components/sys/drivers/spi.c this seems to be supported properly. |
this could possibly fix whitecatboard#384
Please try out #410 and let us know if that fixes your issue. |
There are devices that can be run in "Arduino ICSP mode", this is SPI but no CS signal. This also makes sense if you only have one SPI device and want to save a gpio pin.
esp-idf
supports this setup inspi_bus_add_device
settingcs
as -1, but there are several checks in whitecat's SPI driver that do not allow for this.The text was updated successfully, but these errors were encountered: