Skip to content

The GPIOBase template only supports modules with a maximum of 16 pins. #492

@Arq

Description

@Arq

In the IO_GPOIOBase.h file, on line 127, instead of
uint16_t mask = 1 << pin;
it should be
uint64_t mask = 1 << pin;
to ensure the claimed (in line 30) support for up to 64 pins.

But what if I need a driver for a controller emulating an I2C expander with 128, 256, or more pins?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions