diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-03-10 09:20:55 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-03-10 09:20:55 +0000 |
commit | df9b04c87fa803d2237c407ba17845fe1ca53674 (patch) | |
tree | b5c37ace20c94cdf2ac42c8ae21bd98530f9b7c1 /Bootloaders/Printer | |
parent | 6c9632ae388b8ceadb00ca981ff7fbd5235ac448 (diff) | |
download | lufa-df9b04c87fa803d2237c407ba17845fe1ca53674.tar.gz lufa-df9b04c87fa803d2237c407ba17845fe1ca53674.tar.bz2 lufa-df9b04c87fa803d2237c407ba17845fe1ca53674.zip |
Add documentation to the incomplete Mass Storage class bootloader, update the virtual FAT file entry so that the bootloader section is omitted (not user readable/writable). Fix some minor documentation errors in the Printer class bootloader.
Diffstat (limited to 'Bootloaders/Printer')
-rw-r--r-- | Bootloaders/Printer/BootloaderPrinter.c | 2 | ||||
-rw-r--r-- | Bootloaders/Printer/BootloaderPrinter.h | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/Bootloaders/Printer/BootloaderPrinter.c b/Bootloaders/Printer/BootloaderPrinter.c index 5d4a89bd3..7741f8087 100644 --- a/Bootloaders/Printer/BootloaderPrinter.c +++ b/Bootloaders/Printer/BootloaderPrinter.c @@ -335,7 +335,7 @@ void EVENT_USB_Device_Connect(void) } /** Event handler for the USB_Disconnect event. This indicates that the device is no longer connected to a host via - * the status LEDs and stops the Mass Storage management task. + * the status LEDs and stops the Printer management task. */ void EVENT_USB_Device_Disconnect(void) { diff --git a/Bootloaders/Printer/BootloaderPrinter.h b/Bootloaders/Printer/BootloaderPrinter.h index b99e76379..fcbd8d765 100644 --- a/Bootloaders/Printer/BootloaderPrinter.h +++ b/Bootloaders/Printer/BootloaderPrinter.h @@ -30,11 +30,11 @@ /** \file * - * Header file for Printer.c. + * Header file for BootloaderPrinter.c. */ -#ifndef _PRINTER_H_ -#define _PRINTER_H_ +#ifndef _BOOTLOADER_PRINTER_H_ +#define _BOOTLOADER_PRINTER_H_ /* Includes: */ #include <avr/io.h> |