From 4a4b9d3051e43a6495b28e9c7eb79674fcf1e46d Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 22 Jun 2013 11:58:25 +0200 Subject: Add U2S board support Includes board definition files and patch for AVRISPMKII to move the reset line for pin compatibility. http://sites.google.com/site/megau2s/ --- Projects/AVRISP-MKII/Config/AppConfig.h | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Projects') diff --git a/Projects/AVRISP-MKII/Config/AppConfig.h b/Projects/AVRISP-MKII/Config/AppConfig.h index e92fa9331..97609c323 100644 --- a/Projects/AVRISP-MKII/Config/AppConfig.h +++ b/Projects/AVRISP-MKII/Config/AppConfig.h @@ -46,7 +46,11 @@ #define AUX_LINE_PORT PORTB #define AUX_LINE_PIN PINB #define AUX_LINE_DDR DDRB - #define AUX_LINE_MASK (1 << 4) + #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 -- cgit v1.2.3