b.liu | 5fa9e77 | 2023-11-23 18:00:55 +0800 | [diff] [blame^] | 1 | #include "mbtk_type.h" |
| 2 | |
| 3 | int lynq_gpio_init(int gpio, int direction, int value, int pullsel) |
| 4 | { |
| 5 | UNUSED(gpio); |
| 6 | UNUSED(direction); |
| 7 | UNUSED(value); |
| 8 | UNUSED(pullsel); |
| 9 | |
| 10 | return 0; |
| 11 | } |
| 12 | |
| 13 | int lynq_gpio_deinit(int gpio) |
| 14 | { |
| 15 | UNUSED(gpio); |
| 16 | |
| 17 | return 0; |
| 18 | } |
| 19 | |
| 20 | int lynq_gpio_direction_set(int gpio, int direction) |
| 21 | { |
| 22 | UNUSED(gpio); |
| 23 | UNUSED(direction); |
| 24 | |
| 25 | return 0; |
| 26 | } |
| 27 | |
| 28 | |
| 29 | int lynq_gpio_value_set(int gpio, int value) |
| 30 | { |
| 31 | UNUSED(gpio); |
| 32 | UNUSED(value); |
| 33 | |
| 34 | return 0; |
| 35 | } |
| 36 | |
| 37 | int lynq_gpio_value_get(int gpio) |
| 38 | { |
| 39 | UNUSED(gpio); |
| 40 | |
| 41 | return 0; |
| 42 | } |
| 43 | |
| 44 | int lynq_gpio_pullsel_set(int gpio, int pullsel) |
| 45 | { |
| 46 | UNUSED(gpio); |
| 47 | UNUSED(pullsel); |
| 48 | |
| 49 | return 0; |
| 50 | } |
| 51 | |
| 52 | |
| 53 | int lynq_gpio_pullsel_get(int gpio) |
| 54 | { |
| 55 | UNUSED(gpio); |
| 56 | |
| 57 | return 0; |
| 58 | } |
| 59 | |
| 60 | |
| 61 | |