We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f13002e commit fadbc8dCopy full SHA for fadbc8d
1 file changed
src/hal/drivers/hal_gpio.c
@@ -86,16 +86,16 @@ typedef struct{
86
} hal_gpio_hal_t;
87
88
/* 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
+ * bits 0 - 4 are gpiod flags
+ * OPEN_DRAIN = BIT(0)
+ * OPEN_SOURCE = BIT(1)
+ * BIAS_DISABLE = BIT(2)
+ * PULL_DOWN = BIT(3)
+ * PULL_UP = BIT(4)
95
*
96
* hal_gpio flags
97
* INVERT = BIT(5)
98
- * RESET = BIT(6) - not currently supported
+ * RESET = BIT(6)
99
*/
100
101
typedef struct {
0 commit comments