aboutsummaryrefslogtreecommitdiff
path: root/Bootloaders
diff options
context:
space:
mode:
authorDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-10-08 07:18:28 +0000
committerDean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28>2009-10-08 07:18:28 +0000
commitfc6669c1af3f3b740cdee1f76ebd506807ec62d1 (patch)
treec8bc5b6a52dd7dcc3f9233270569ee9cd2ebd0ba /Bootloaders
parent2f176c7b8f3fe151022b13791ba8f19204dabcd7 (diff)
Application documentation/comment cleanup.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@862 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Bootloaders')
-rw-r--r--Bootloaders/CDC/BootloaderCDC.c1
-rw-r--r--Bootloaders/Incomplete/MIDI/BootloaderMIDI.c2
-rw-r--r--Bootloaders/Incomplete/MIDI/MIDI.c2
-rw-r--r--Bootloaders/TeensyHID/TeensyHID.c1
4 files changed, 2 insertions, 4 deletions
diff --git a/Bootloaders/CDC/BootloaderCDC.c b/Bootloaders/CDC/BootloaderCDC.c
index f6660238..925385d8 100644
--- a/Bootloaders/CDC/BootloaderCDC.c
+++ b/Bootloaders/CDC/BootloaderCDC.c
@@ -36,7 +36,6 @@
#define INCLUDE_FROM_BOOTLOADERCDC_C
#include "BootloaderCDC.h"
-/* Globals: */
/** Line coding options for the virtual serial port. Although the virtual serial port data is never
* sent through a physical serial port, the line encoding data must still be read and preserved from
* the host, or the host will detect a problem and fail to open the port. This structure contains the
diff --git a/Bootloaders/Incomplete/MIDI/BootloaderMIDI.c b/Bootloaders/Incomplete/MIDI/BootloaderMIDI.c
index 97a2ada8..6cb25a5c 100644
--- a/Bootloaders/Incomplete/MIDI/BootloaderMIDI.c
+++ b/Bootloaders/Incomplete/MIDI/BootloaderMIDI.c
@@ -37,7 +37,7 @@
#include "BootloaderMIDI.h"
/** Main program entry point. This routine configures the hardware required by the application, then
- * starts the scheduler to run the application tasks.
+ * enters a loop to run the application tasks in sequence.
*/
int main(void)
{
diff --git a/Bootloaders/Incomplete/MIDI/MIDI.c b/Bootloaders/Incomplete/MIDI/MIDI.c
index 9343fe7b..004e7af1 100644
--- a/Bootloaders/Incomplete/MIDI/MIDI.c
+++ b/Bootloaders/Incomplete/MIDI/MIDI.c
@@ -37,7 +37,7 @@
#include "MIDI.h"
/** Main program entry point. This routine configures the hardware required by the application, then
- * starts the scheduler to run the application tasks.
+ * enters a loop to run the application tasks in sequence.
*/
int main(void)
{
diff --git a/Bootloaders/TeensyHID/TeensyHID.c b/Bootloaders/TeensyHID/TeensyHID.c
index bb5a0c70..f3d86a66 100644
--- a/Bootloaders/TeensyHID/TeensyHID.c
+++ b/Bootloaders/TeensyHID/TeensyHID.c
@@ -35,7 +35,6 @@
#include "TeensyHID.h"
-/* Global Variables: */
/** Flag to indicate if the bootloader should be running, or should exit and allow the application code to run
* via a soft reset. When cleared, the bootloader will abort, the USB interface will shut down and the application
* started via a forced watchdog reset.