diff options
Diffstat (limited to 'Projects/Benito/Benito.c')
-rw-r--r-- | Projects/Benito/Benito.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Projects/Benito/Benito.c b/Projects/Benito/Benito.c index ba8053473..712016bc0 100644 --- a/Projects/Benito/Benito.c +++ b/Projects/Benito/Benito.c @@ -36,8 +36,13 @@ #include "Benito.h"
+/** Counter for the number of milliseconds remaining for the target /RESET pulse being generated. */
volatile uint8_t ResetPulseMSRemaining = 0;
+
+/** Counter for the number of milliseconds remaining for the TX activity LED pulse being generated. */
volatile uint8_t TxPulseMSRemaining = 0;
+
+/** Counter for the number of milliseconds remaining for the RX activity LED pulse being generated. */
volatile uint8_t RxPulseMSRemaining = 0;
/** LUFA CDC Class driver interface configuration and state information. This structure is
|