avrinput/configuration.h

11 lines
181 B
C

#ifndef _CONFIGURATION_H_
#define _CONFIGURATION_H_
#define CHANNEL_1_ENABLED (PIND & _BV(PD6))
#define CHANNEL_2_ENABLED (PIND & _BV(PD7))
void
configuration_init(void);
#endif