12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #ifndef _APP_CONFIG_H_
- #define _APP_CONFIG_H_
- #define AUX_LINE_PORT PORTB
- #define AUX_LINE_PIN PINB
- #define AUX_LINE_DDR DDRB
- #define AUX_LINE_MASK (1 << 4)
- #define ENABLE_XPROG_PROTOCOL
- #define VTARGET_ADC_CHANNEL 2
- #define VTARGET_REF_VOLTS 3.3
- #define VTARGET_SCALE_FACTOR 2
- #endif
|