1 /*
2  * Copyright (c) 2024 Raspberry Pi (Trading) Ltd.
3  *
4  * SPDX-License-Identifier: BSD-3-Clause
5  */
6 
7 #ifndef _PIO_ENUMS_H
8 #define _PIO_ENUMS_H
9 
10 typedef unsigned int uint;
11 
12 enum struct fifo_config {
13     txrx = 0,
14     tx = 1,
15     rx = 2,
16     txget = 3,
17     txput = 4,
18     putget = 5,
19 };
20 
21 #endif