1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- #ifndef _APP_CONFIG_H_
- #define _APP_CONFIG_H_
- #define AUX_LINE_PORT PORTB
- #define AUX_LINE_PIN PINB
- #define AUX_LINE_DDR DDRB
- #if (BOARD == BOARD_U2S)
- #define AUX_LINE_MASK (1 << 0)
- #else
- #define AUX_LINE_MASK (1 << 4)
- #endif
- #define ENABLE_ISP_PROTOCOL
- #define ENABLE_XPROG_PROTOCOL
- #define VTARGET_ADC_CHANNEL 2
- #define VTARGET_REF_VOLTS 5
- #define VTARGET_SCALE_FACTOR 1
- #define NO_VTARGET_DETECT
- #endif
|