diff options
| -rw-r--r-- | Bootloaders/CDC/BootloaderCDC.h | 2 | ||||
| -rw-r--r-- | Bootloaders/CDC/asf.xml | 6 | ||||
| -rw-r--r-- | Bootloaders/DFU/BootloaderDFU.h | 2 | ||||
| -rw-r--r-- | Bootloaders/DFU/asf.xml | 6 | ||||
| -rw-r--r-- | Bootloaders/HID/BootloaderHID.h | 2 | ||||
| -rw-r--r-- | Bootloaders/HID/asf.xml | 6 | ||||
| -rw-r--r-- | Bootloaders/MassStorage/BootloaderMassStorage.h | 2 | ||||
| -rw-r--r-- | Bootloaders/MassStorage/asf.xml | 6 | ||||
| -rw-r--r-- | Bootloaders/Printer/BootloaderPrinter.h | 2 | ||||
| -rw-r--r-- | Bootloaders/Printer/asf.xml | 6 | 
10 files changed, 10 insertions, 30 deletions
diff --git a/Bootloaders/CDC/BootloaderCDC.h b/Bootloaders/CDC/BootloaderCDC.h index 76d579d26..e4eebe777 100644 --- a/Bootloaders/CDC/BootloaderCDC.h +++ b/Bootloaders/CDC/BootloaderCDC.h @@ -54,7 +54,7 @@  	/* Preprocessor Checks: */  		#if !defined(__OPTIMIZE_SIZE__) -			#error This bootloader requires that it be compiled for size, not speed for it to fit into the target device. +			#error This bootloader requires that it be compiled for size, not speed, to fit into the target device.  		#endif  	/* Macros: */ diff --git a/Bootloaders/CDC/asf.xml b/Bootloaders/CDC/asf.xml index 4bc47b131..95976dc2a 100644 --- a/Bootloaders/CDC/asf.xml +++ b/Bootloaders/CDC/asf.xml @@ -121,7 +121,7 @@  	<module type="application" id="lufa.bootloaders.cdc" caption="CDC Bootloader">
  		<info type="description" value="summary">
 -		CDC Class Bootloader.
 +		CDC Class Bootloader, capable of reprogramming a device using avrdude or other AVR109 protocol compliant software when plugged into a host.
  		</info>
  		<device-support-alias value="lufa_avr8"/>
 @@ -133,10 +133,6 @@  			<keyword value="USB Device"/>
  		</info>
 -		<device-support-alias value="lufa_avr8"/>
 -		<device-support-alias value="lufa_xmega"/>
 -		<device-support-alias value="lufa_uc3"/>
 -
  		<build type="include-path" value="."/>
  		<build type="c-source" value="BootloaderCDC.c"/>
  		<build type="header-file" value="BootloaderCDC.h"/>
 diff --git a/Bootloaders/DFU/BootloaderDFU.h b/Bootloaders/DFU/BootloaderDFU.h index 537902393..1ace570fe 100644 --- a/Bootloaders/DFU/BootloaderDFU.h +++ b/Bootloaders/DFU/BootloaderDFU.h @@ -56,7 +56,7 @@  	/* Preprocessor Checks: */  		#if !defined(__OPTIMIZE_SIZE__) -			#error This bootloader requires that it be compiled for size, not speed for it to fit into the target device. +			#error This bootloader requires that it be compiled for size, not speed, to fit into the target device.  		#endif  	/* Macros: */ diff --git a/Bootloaders/DFU/asf.xml b/Bootloaders/DFU/asf.xml index b83496807..4f3c71e74 100644 --- a/Bootloaders/DFU/asf.xml +++ b/Bootloaders/DFU/asf.xml @@ -117,7 +117,7 @@  	<module type="application" id="lufa.bootloaders.dfu" caption="DFU Bootloader">
  		<info type="description" value="summary">
 -		DFU Class Bootloader.
 +		DFU Class Bootloader, capable of reprogramming a device using the Atmel FLIP or other AVR DFU programming software when plugged into a host.
  		</info>
  		<device-support-alias value="lufa_avr8"/>
 @@ -129,10 +129,6 @@  			<keyword value="USB Device"/>
  		</info>
 -		<device-support-alias value="lufa_avr8"/>
 -		<device-support-alias value="lufa_xmega"/>
 -		<device-support-alias value="lufa_uc3"/>
 -
  		<build type="include-path" value="."/>
  		<build type="c-source" value="BootloaderDFU.c"/>
  		<build type="header-file" value="BootloaderDFU.h"/>
 diff --git a/Bootloaders/HID/BootloaderHID.h b/Bootloaders/HID/BootloaderHID.h index e63b19d94..1394b8222 100644 --- a/Bootloaders/HID/BootloaderHID.h +++ b/Bootloaders/HID/BootloaderHID.h @@ -50,7 +50,7 @@  	/* Preprocessor Checks: */  		#if !defined(__OPTIMIZE_SIZE__) -			#error This bootloader requires that it be compiled for size, not speed for it to fit into the target device. +			#error This bootloader requires that it be compiled for size, not speed, to fit into the target device.  		#endif  	/* Macros: */ diff --git a/Bootloaders/HID/asf.xml b/Bootloaders/HID/asf.xml index 0b5a96fc0..5a86e7003 100644 --- a/Bootloaders/HID/asf.xml +++ b/Bootloaders/HID/asf.xml @@ -86,7 +86,7 @@  	<module type="application" id="lufa.bootloaders.hid" caption="HID Bootloader">
  		<info type="description" value="summary">
 -		HID Class Bootloader.
 +		HID Class Bootloader, capable of reprogramming a device via a custom cross-platform command line utility when plugged into a host.
  		</info>
  		<device-support-alias value="lufa_avr8"/>
 @@ -98,10 +98,6 @@  			<keyword value="USB Device"/>
  		</info>
 -		<device-support-alias value="lufa_avr8"/>
 -		<device-support-alias value="lufa_xmega"/>
 -		<device-support-alias value="lufa_uc3"/>
 -
  		<build type="include-path" value="."/>
  		<build type="c-source" value="BootloaderHID.c"/>
  		<build type="header-file" value="BootloaderHID.h"/>
 diff --git a/Bootloaders/MassStorage/BootloaderMassStorage.h b/Bootloaders/MassStorage/BootloaderMassStorage.h index 5e90739ad..3a8e44b78 100644 --- a/Bootloaders/MassStorage/BootloaderMassStorage.h +++ b/Bootloaders/MassStorage/BootloaderMassStorage.h @@ -52,7 +52,7 @@  	/* Preprocessor Checks: */  		#if !defined(__OPTIMIZE_SIZE__) -			#error This bootloader requires that it be compiled for size, not speed for it to fit into the target device. +			#error This bootloader requires that it be compiled for size, not speed, to fit into the target device.  		#endif  	/* Macros: */ diff --git a/Bootloaders/MassStorage/asf.xml b/Bootloaders/MassStorage/asf.xml index 61709e09c..cbaf9f06d 100644 --- a/Bootloaders/MassStorage/asf.xml +++ b/Bootloaders/MassStorage/asf.xml @@ -111,7 +111,7 @@  	<module type="application" id="lufa.bootloaders.mass_storage" caption="Mass Storage Bootloader">
  		<info type="description" value="summary">
 -		Mass Storage Class Bootloader.
 +		Mass Storage Class Bootloader, capable of reprogramming a device via binary BIN files copied to the virtual FAT12 file-system it creates when plugged into a host.
  		</info>
  		<device-support-alias value="lufa_avr8"/>
 @@ -123,10 +123,6 @@  			<keyword value="USB Device"/>
  		</info>
 -		<device-support-alias value="lufa_avr8"/>
 -		<device-support-alias value="lufa_xmega"/>
 -		<device-support-alias value="lufa_uc3"/>
 -
  		<build type="include-path" value="."/>
  		<build type="c-source" value="BootloaderMassStorage.c"/>
  		<build type="header-file" value="BootloaderMassStorage.h"/>
 diff --git a/Bootloaders/Printer/BootloaderPrinter.h b/Bootloaders/Printer/BootloaderPrinter.h index 22104c53f..19d36e050 100644 --- a/Bootloaders/Printer/BootloaderPrinter.h +++ b/Bootloaders/Printer/BootloaderPrinter.h @@ -49,7 +49,7 @@  	/* Preprocessor Checks: */  		#if !defined(__OPTIMIZE_SIZE__) -			#error This bootloader requires that it be compiled for size, not speed for it to fit into the target device. +			#error This bootloader requires that it be compiled for size, not speed, to fit into the target device.  		#endif  	/* Macros: */ diff --git a/Bootloaders/Printer/asf.xml b/Bootloaders/Printer/asf.xml index 54b76fb00..f2f5de098 100644 --- a/Bootloaders/Printer/asf.xml +++ b/Bootloaders/Printer/asf.xml @@ -121,7 +121,7 @@  	<module type="application" id="lufa.bootloaders.printer" caption="Printer Bootloader">
  		<info type="description" value="summary">
 -		Printer Class Bootloader.
 +		Printer Class Bootloader, capable of reprogramming a device by "printing" new HEX files to the virtual Plain-Text printer it creates when plugged into a host.
  		</info>
  		<device-support-alias value="lufa_avr8"/>
 @@ -133,10 +133,6 @@  			<keyword value="USB Device"/>
  		</info>
 -		<device-support-alias value="lufa_avr8"/>
 -		<device-support-alias value="lufa_xmega"/>
 -		<device-support-alias value="lufa_uc3"/>
 -
  		<build type="include-path" value="."/>
  		<build type="c-source" value="BootloaderPrinter.c"/>
  		<build type="header-file" value="BootloaderPrinter.h"/>
  | 
