waveblender/pinout.h
Daniele Lacamera 22ff79dcdf Initial import
2020-04-06 21:08:01 +02:00

13 lines
127 B
C

#ifndef PIN_INCLUDED
#define PIN_INCLUDED
#include <stdint.h>
struct pin {
uint32_t bank;
uint32_t pin;
};
#endif