aboutsummaryrefslogtreecommitdiffstats
path: root/Bootloaders
diff options
context:
space:
mode:
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 f66602387..925385d8c 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 97a2ada83..6cb25a5c5 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 9343fe7bf..004e7af1a 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 bb5a0c708..f3d86a66f 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.