diff options
| author | Ryan | 2024-03-29 17:57:21 +0100 |
|---|---|---|
| committer | GitHub | 2024-03-29 17:57:21 +0100 |
| commit | d0cf7b85192ce4431bb4c8c57e2d7501df83ac43 (patch) | |
| tree | e182500e7df7bf2886300e53e5c7d7c03b01bb40 /drivers/gpio/pca9505.h | |
| parent | e891109c4e115a303e109b179bf9d24edbdd7ad7 (diff) | |
Update GPIO expander API naming (#23375)
Diffstat (limited to 'drivers/gpio/pca9505.h')
| -rw-r--r-- | drivers/gpio/pca9505.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/gpio/pca9505.h b/drivers/gpio/pca9505.h index 732ddb88ea..0cec8610d9 100644 --- a/drivers/gpio/pca9505.h +++ b/drivers/gpio/pca9505.h @@ -64,4 +64,8 @@ bool pca9505_set_output(uint8_t slave_addr, pca9505_port_t port, uint8_t conf); /** * Read state of a given port */ -bool pca9505_readPins(uint8_t slave_addr, pca9505_port_t port, uint8_t* ret); +bool pca9505_read_pins(uint8_t slave_addr, pca9505_port_t port, uint8_t* ret); + +// DEPRECATED - DO NOT USE + +#define pca9505_readPins pca9505_read_pins |