diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-07-23 11:01:32 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-07-23 11:01:32 +0000 |
commit | 06f3a6a876abb4911fbf205daeacbb33c4c0f92a (patch) | |
tree | c0049d48f4f9dc09be6badcaa9d46cf9ef56b3a6 /Projects/Benito/Benito.c | |
parent | a6e85d6ed80720e15477433f4abf0ca5f54422ba (diff) | |
download | lufa-06f3a6a876abb4911fbf205daeacbb33c4c0f92a.tar.gz lufa-06f3a6a876abb4911fbf205daeacbb33c4c0f92a.tar.bz2 lufa-06f3a6a876abb4911fbf205daeacbb33c4c0f92a.zip |
Tweaks to the new Benito Programmer project for documentation and port/pin usage.
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
|