avrinput/configuration.h

11 lines
181 B
C
Raw Normal View History

2019-01-17 18:39:42 +00:00
#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