Files
allwpilib/hal/lib/Athena/Port.h

12 lines
128 B
C
Raw Normal View History

#ifndef HAL_PORT_H
#define HAL_PORT_H
struct port_t {
uint8_t pin;
uint8_t module;
};
typedef struct port_t Port;
#endif