Skip to content

Unexpected Maker FeatherS2 - SPI creation error #3889

@lukasmwerner

Description

@lukasmwerner

When creating SPI on the default pins on the latest 6.1.0 beta 2 I receive a value error ValueError: IO36 in use. This happens both when I create the SPI myself spi = busio.SPI(board.IO36, MOSI=board.MOSI, MISO=board.MISO) I get the same error as well. But when I create this bus by hand in the 6.0.0 release it works fine.

Sample 1:

import board
spi = board.SPI()

Sample 2:

import board, busio
spi = busio.SPI(board.IO36, MOSI=board.MOSI, MISO=board.MISO)

Metadata

Metadata

Assignees

No one assigned

    Labels

    bugespressifapplies to multiple Espressif chips

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions