We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b685226 commit cf01fb6Copy full SHA for cf01fb6
1 file changed
L2_Core/hal/src/ek_hal_gpio.c
@@ -3,9 +3,9 @@
3
4
ek_list_node_t ek_hal_gpio_head;
5
6
-static void xxx_pin_set(vopd);
7
-static void xxx_pin_reset(vopd);
8
-static void xxx_pin_toggle(vopd);
+static void xxx_pin_set(void);
+static void xxx_pin_reset(void);
+static void xxx_pin_toggle(void);
9
10
ek_hal_gpio_t hal_drv_gpio_xxx_pin = {
11
.idx = 1,
@@ -14,15 +14,15 @@ ek_hal_gpio_t hal_drv_gpio_xxx_pin = {
14
.toggle = xxx_pin_toggle,
15
};
16
17
-static void xxx_pin_set(vopd)
+static void xxx_pin_set(void)
18
{
19
}
20
21
-static void xxx_pin_reset(vopd)
+static void xxx_pin_reset(void)
22
23
24
25
-static void xxx_pin_toggle(vopd)
+static void xxx_pin_toggle(void)
26
27
28
0 commit comments