waveblender/pinout.h

14 lines
127 B
C
Raw Normal View History

2020-04-06 21:08:01 +02:00
#ifndef PIN_INCLUDED
#define PIN_INCLUDED
#include <stdint.h>
struct pin {
uint32_t bank;
uint32_t pin;
};
#endif