]> git.sur5r.net Git - freertos/blob
c9c7839e9b0b843be1c9f8b471011a2c15408b1f
[freertos] /
1 /* Copyright 2018 SiFive, Inc */
2 /* SPDX-License-Identifier: Apache-2.0 */
3
4 #ifndef METAL__DRIVERS__SIFIVE_GPIO_SWITCHES_H
5 #define METAL__DRIVERS__SIFIVE_GPIO_SWITCHES_H
6
7 #include <metal/drivers/sifive_gpio0.h>
8 #include <metal/switch.h>
9 #include <metal/compiler.h>
10
11 struct __metal_driver_vtable_sifive_switch {
12   struct metal_switch_vtable switch_vtable;
13 };
14
15 __METAL_DECLARE_VTABLE(__metal_driver_vtable_sifive_switch)
16
17 struct __metal_driver_sifive_gpio_switch {
18     struct metal_switch flip;
19 };
20
21 #endif