We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
busio (and presumably other base modules) do not do pin ownership, so it's possible to create multiple devices using the same pins, e.g.:
busio
spi1 = busio.SPI(board.SCK,board.MOSI,board.MISO) spi2 = busio.SPI(board.SCK,board.MOSI,board.MISO)
does not complain on nrf52. Or you could even create an SPI bus and and I2C bus on the same pins.
Symptoms noticed in #1088 (thanks @jerryneedell!)
The text was updated successfully, but these errors were encountered:
Related to #1040
Sorry, something went wrong.
Fixed by #1158.
dhalbert
No branches or pull requests
busio
(and presumably other base modules) do not do pin ownership, so it's possible to create multiple devices using the same pins, e.g.:does not complain on nrf52. Or you could even create an SPI bus and and I2C bus on the same pins.
Symptoms noticed in #1088 (thanks @jerryneedell!)
The text was updated successfully, but these errors were encountered: