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
Adafruit CircuitPython 7.1.1 on 2022-01-14; Adafruit KB2040 with rp2040
import board spi=board.SPI()
Traceback (most recent call last): File "<stdin>", line 1, in <module> NotImplementedError: No default SPI bus
Error while using SPI on KB2040 board. Using the following instructions creates a working SPI object:
import board,busio spi = busio.SPI(board.SCK, board.MOSI, board.MISO)
No response
The text was updated successfully, but these errors were encountered:
Define default SPI pins on kb2040
784a5ed
Fixes adafruit#5875
Successfully merging a pull request may close this issue.
CircuitPython version
Code/REPL
Behavior
Description
Error while using SPI on KB2040 board. Using the following instructions creates a working SPI object:
Additional information
No response
The text was updated successfully, but these errors were encountered: