aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/DoxygenPages/BuildSystem.txt
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2012-07-08 10:24:39 +0000
committerDean Camera <dean@fourwalledcubicle.com>2012-07-08 10:24:39 +0000
commitc4da1929cd94a1e41d4aba662f2d0e09726066b5 (patch)
treeaf7a5d9cf56b1a04d43f53f4a8464c85d4672c65 /LUFA/DoxygenPages/BuildSystem.txt
parent56d368f2de56a634f3c486971b935bdd87761a84 (diff)
downloadlufa-c4da1929cd94a1e41d4aba662f2d0e09726066b5.tar.gz
lufa-c4da1929cd94a1e41d4aba662f2d0e09726066b5.tar.bz2
lufa-c4da1929cd94a1e41d4aba662f2d0e09726066b5.zip
Update BUILD build system module with OBJECT_FILES variable, for additional user-specified object files. Update HID build module with a small shim application to reprogram the EEPROM of a target.
Diffstat (limited to 'LUFA/DoxygenPages/BuildSystem.txt')
-rw-r--r--LUFA/DoxygenPages/BuildSystem.txt16
1 files changed, 16 insertions, 0 deletions
diff --git a/LUFA/DoxygenPages/BuildSystem.txt b/LUFA/DoxygenPages/BuildSystem.txt
index d50dd7f13..2c42c7da8 100644
--- a/LUFA/DoxygenPages/BuildSystem.txt
+++ b/LUFA/DoxygenPages/BuildSystem.txt
@@ -183,6 +183,10 @@
* <td>Directory to place the generated object and dependency files. If set to "." the same folder as the source file will be used.
* \note When this option is enabled, all source filenames <b>must</b> be unique.</td>
* </tr>
+ * <tr>
+ * <td><tt>OBJECT_FILES</tt></td>
+ * <td>List of additional object files that should be linked into the resulting binary.</td>
+ * </tr>
* </table>
*
* \section SSec_BuildModule_BUILD_ProvidedVariables Module Provided Variables
@@ -696,9 +700,21 @@
* <td>Program the device FLASH memory with the application's executable data using <tt>hid_bootloader_cli</tt>.</td>
* </tr>
* <tr>
+ * <td><tt>hid-ee</tt></td>
+ * <td>Program the device EEPROM memory with the application's EEPROM data using <tt>hid_bootloader_cli</tt> and
+ * a temporary AVR application programmed into the target's FLASH.
+ * \note This will erase the currently loaded application in the target.</td>
+ * </tr>
+ * <tr>
* <td><tt>hid-teensy</tt></td>
* <td>Program the device FLASH memory with the application's executable data using <tt>teensy_loader_cli</tt>.</td>
* </tr>
+ * <tr>
+ * <td><tt>hid-teensy-ee</tt></td>
+ * <td>Program the device EEPROM memory with the application's EEPROM data using <tt>teensy_loader_cli</tt> and
+ * a temporary AVR application programmed into the target's FLASH.
+ * \note This will erase the currently loaded application in the target.</td>
+ * </tr>
* </table>
*
* \section SSec_BuildModule_HID_MandatoryParams Mandatory Parameters