13 lines
127 B
C
13 lines
127 B
C
#ifndef PIN_INCLUDED
|
|
#define PIN_INCLUDED
|
|
#include <stdint.h>
|
|
|
|
struct pin {
|
|
uint32_t bank;
|
|
uint32_t pin;
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|