summaryrefslogtreecommitdiff
path: root/FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1-RevB_FreedomStudio/freedom-metal/metal/drivers/sifive_gpio-buttons.h
blob: a0caeaba8f2330ea8b08974ad98832a8486c7a94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/* Copyright 2018 SiFive, Inc */
/* SPDX-License-Identifier: Apache-2.0 */

#ifndef METAL__DRIVERS__SIFIVE_GPIO_BUTTONS_H
#define METAL__DRIVERS__SIFIVE_GPIO_BUTTONS_H

#include <string.h>
#include <metal/button.h>
#include <metal/compiler.h>

struct __metal_driver_vtable_sifive_button {
  struct metal_button_vtable button_vtable;
};

__METAL_DECLARE_VTABLE(__metal_driver_vtable_sifive_button)

struct __metal_driver_sifive_gpio_button {
    struct metal_button button;
};

#endif