Files
allwpilib/hal/Athena/src/main/native/Port.h
2013-12-15 18:30:16 -05:00

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