mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-07-01 02:41:48 +00:00
12 lines
128 B
C
12 lines
128 B
C
|
|
#ifndef HAL_PORT_H
|
|
#define HAL_PORT_H
|
|
|
|
struct port_t {
|
|
uint8_t pin;
|
|
uint8_t module;
|
|
};
|
|
typedef struct port_t Port;
|
|
|
|
#endif
|