1
0
mirror of https://github.com/raspberrypi/pico-sdk.git synced 2025-07-31 09:24:21 +03:00
Files
pico-sdk/tools/pioasm/pio_enums.h
graham sanderson efe2103f9b SDK 2.0.0 release
2024-08-08 08:54:38 -05:00

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