Skip to content

Commit fadbc8d

Browse files
authored
hal_gpio: Remove misleading comments
Try to stop anyone else fixing a feature that is already fixed.
1 parent f13002e commit fadbc8d

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/hal/drivers/hal_gpio.c

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -86,16 +86,16 @@ typedef struct{
8686
} hal_gpio_hal_t;
8787

8888
/* flags are defined such:
89-
* bits 1 - 4 are gpiod flags
90-
* OPEN_DRAIN = BIT(0) - not currently supported
91-
* OPEN_SOURCE = BIT(1) - not currently supported
92-
* BIAS_DISABLE = BIT(2) - not currently supported
93-
* PULL_DOWN = BIT(3) - not currently supported
94-
* PULL_UP = BIT(4) - not currently supported
89+
* bits 0 - 4 are gpiod flags
90+
* OPEN_DRAIN = BIT(0)
91+
* OPEN_SOURCE = BIT(1)
92+
* BIAS_DISABLE = BIT(2)
93+
* PULL_DOWN = BIT(3)
94+
* PULL_UP = BIT(4)
9595
*
9696
* hal_gpio flags
9797
* INVERT = BIT(5)
98-
* RESET = BIT(6) - not currently supported
98+
* RESET = BIT(6)
9999
*/
100100

101101
typedef struct {

0 commit comments

Comments
 (0)