X-Git-Url: http://git.linex4red.de/pub/USBasp.git/blobdiff_plain/70dd6bc526d5f7b5db89af65638b9a74211fd7bb..03f72c5fb0bb9b9997b0433d472752c3afe2468c:/LUFA/Drivers/Board/AVR8/UNO/Board.h diff --git a/LUFA/Drivers/Board/AVR8/UNO/Board.h b/LUFA/Drivers/Board/AVR8/UNO/Board.h index ecfc37bf3..e2947f76f 100644 --- a/LUFA/Drivers/Board/AVR8/UNO/Board.h +++ b/LUFA/Drivers/Board/AVR8/UNO/Board.h @@ -1,13 +1,13 @@ /* LUFA Library - Copyright (C) Dean Camera, 2013. + Copyright (C) Dean Camera, 2019. dean [at] fourwalledcubicle [dot] com www.lufa-lib.org */ /* - Copyright 2013 Dean Camera (dean [at] fourwalledcubicle [dot] com) + Copyright 2019 Dean Camera (dean [at] fourwalledcubicle [dot] com) Permission to use, copy, modify, distribute, and sell this software and its documentation for any purpose is hereby granted @@ -67,6 +67,12 @@ /** Indicates the board has hardware LEDs mounted. */ #define BOARD_HAS_LEDS + /** Pin that can reset the main MCU. */ + #define AVR_RESET_LINE_PORT PORTD + #define AVR_RESET_LINE_DDR DDRD + #define AVR_RESET_LINE_PIN PIND + #define AVR_RESET_LINE_MASK (1 << PD7) + /* Disable C linkage for C++ Compilers: */ #if defined(__cplusplus) }