]> git.sur5r.net Git - freertos/blob - FreeRTOS/Demo/RISC-V_RV32_SiFive_HiFive1_FreedomStudio/freedom-metal/metal/drivers/sifive_trace.h
Update RISCC-V-RV32-SiFive_HiFive1_FreedomStudio project to latest tools and metal...
[freertos] / FreeRTOS / Demo / RISC-V_RV32_SiFive_HiFive1_FreedomStudio / freedom-metal / metal / drivers / sifive_trace.h
1 /* Copyright 2019 SiFive, Inc */
2 /* SPDX-License-Identifier: Apache-2.0 */
3
4 #ifndef METAL__DRIVERS__SIFIVE_TRACE_H
5 #define METAL__DRIVERS__SIFIVE_TRACE_H
6
7 #include <metal/compiler.h>
8 #include <metal/io.h>
9 #include <metal/uart.h>
10
11 struct __metal_driver_vtable_sifive_trace {
12     const struct metal_uart_vtable uart;
13 };
14
15 struct __metal_driver_sifive_trace;
16
17 __METAL_DECLARE_VTABLE(__metal_driver_vtable_sifive_trace)
18
19 struct __metal_driver_sifive_trace {
20     struct metal_uart uart;
21 };
22
23 #endif /* METAL__DRIVERS__SIFIVE_TRACE_H */