You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
avrIOhelper/io-helper.h

17 lines
276 B
C

extern volatile uint32_t outStates;
extern volatile uint32_t inStates;
void setOuts(void);
void readPins(void);
void ioConf(void);
//Outputs
//Pin | Bit in outStates
#define BitPB0 13
#define BitPB1 12
//Inputs
//Pin | Bit in inStates
#define BitPinC1 0
#define BitPinC5 1