projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix void pointer arithmetic in the low level RNDIS demo.
[pub/USBasp.git]
/
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
264f909
..
c9ca23d
100644
(file)
--- a/
LUFA/Drivers/Board/AVR8/UNO/Board.h
+++ b/
LUFA/Drivers/Board/AVR8/UNO/Board.h
@@
-1,13
+1,13
@@
/*
LUFA Library
/*
LUFA Library
- Copyright (C) Dean Camera, 201
3
.
+ Copyright (C) Dean Camera, 201
5
.
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
dean [at] fourwalledcubicle [dot] com
www.lufa-lib.org
*/
/*
- Copyright 201
3
Dean Camera (dean [at] fourwalledcubicle [dot] com)
+ Copyright 201
5
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
Permission to use, copy, modify, distribute, and sell this
software and its documentation for any purpose is hereby granted
@@
-64,9
+64,15
@@
/* Public Interface - May be used in end-application: */
/* Macros: */
/* Public Interface - May be used in end-application: */
/* Macros: */
- /** Indicates the board has
a
hardware LEDs mounted. */
+ /** Indicates the board has hardware LEDs mounted. */
#define BOARD_HAS_LEDS
#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)
}
/* Disable C linkage for C++ Compilers: */
#if defined(__cplusplus)
}