mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2025-04-24 09:02:28 +00:00
21 lines
293 B
C
21 lines
293 B
C
/*
|
|
* Copyright (c) 2024 Raspberry Pi (Trading) Ltd.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef _PIO_ENUMS_H
|
|
#define _PIO_ENUMS_H
|
|
|
|
typedef unsigned int uint;
|
|
|
|
enum struct fifo_config {
|
|
txrx = 0,
|
|
tx = 1,
|
|
rx = 2,
|
|
txget = 3,
|
|
txput = 4,
|
|
putget = 5,
|
|
};
|
|
|
|
#endif |