diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2011-08-04 05:32:17 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2011-08-04 05:32:17 +0000 |
commit | ddae47979d258aacfc88390c363fc805bb60144a (patch) | |
tree | 7c95cc6c186b9a0c42c10fbd490dc9d07f3d0e68 /LUFA | |
parent | aceb015ea75267f97b97e0bce11b7f6123b0bc06 (diff) | |
download | lufa-ddae47979d258aacfc88390c363fc805bb60144a.tar.gz lufa-ddae47979d258aacfc88390c363fc805bb60144a.tar.bz2 lufa-ddae47979d258aacfc88390c363fc805bb60144a.zip |
Update LUFAConfig.h with missing options for the AVR32 target.
Add Binary Page Mode fuse command bytes to the AT45DB642D.h Dataflash header.
Diffstat (limited to 'LUFA')
-rw-r--r-- | LUFA/CodeTemplates/LUFAConfig.h | 4 | ||||
-rw-r--r-- | LUFA/Drivers/Misc/AT45DB642D.h | 6 | ||||
-rw-r--r-- | LUFA/ManPages/FutureChanges.txt | 1 |
3 files changed, 10 insertions, 1 deletions
diff --git a/LUFA/CodeTemplates/LUFAConfig.h b/LUFA/CodeTemplates/LUFAConfig.h index f6ec104e9..9feb341ff 100644 --- a/LUFA/CodeTemplates/LUFAConfig.h +++ b/LUFA/CodeTemplates/LUFAConfig.h @@ -33,7 +33,7 @@ compile time options, as an alternative to the compile time constants supplied through a makefile. To use this configuration header, copy this into your project's root directory and supply - the USE_LUFA_CONFIG_HEADER token to the compiler so that it is + the \c USE_LUFA_CONFIG_HEADER token to the compiler so that it is defined in all compiled source files. For information on what each token does, refer to the LUFA @@ -99,6 +99,7 @@ // #define NO_CLASS_DRIVER_AUTOFLUSH /* General USB Driver Related Tokens: */ +// #define ORDERED_EP_CONFIG // #define USE_STATIC_OPTIONS {Insert Value Here} // #define USB_DEVICE_ONLY // #define USB_HOST_ONLY @@ -110,6 +111,7 @@ // #define FIXED_CONTROL_ENDPOINT_SIZE {Insert Value Here} // #define FIXED_NUM_CONFIGURATION {Insert Value Here} // #define CONTROL_ONLY_DEVICE +// #define INTERRUPT_CONTROL_ENDPOINT // #define NO_DEVICE_REMOTE_WAKEUP // #define NO_DEVICE_SELF_POWER diff --git a/LUFA/Drivers/Misc/AT45DB642D.h b/LUFA/Drivers/Misc/AT45DB642D.h index 0cbf3da8f..cc8a641d6 100644 --- a/LUFA/Drivers/Misc/AT45DB642D.h +++ b/LUFA/Drivers/Misc/AT45DB642D.h @@ -100,6 +100,12 @@ #define DF_CMD_SECTORPROTECTIONOFF_BYTE3 0x7F #define DF_CMD_SECTORPROTECTIONOFF_BYTE4 0x9A + #define DF_CMD_BINARYPAGESIZEMODEON ((char[]){0x3D, 0x2A, 0x80, 0xA6}) + #define DF_CMD_BINARYPAGESIZEMODEON_BYTE1 0x3D + #define DF_CMD_BINARYPAGESIZEMODEON_BYTE2 0x2A + #define DF_CMD_BINARYPAGESIZEMODEON_BYTE3 0x80 + #define DF_CMD_BINARYPAGESIZEMODEON_BYTE4 0xA6 + #define DF_CMD_READMANUFACTURERDEVICEINFO 0x9F //@} diff --git a/LUFA/ManPages/FutureChanges.txt b/LUFA/ManPages/FutureChanges.txt index 51656ac00..74ffdf879 100644 --- a/LUFA/ManPages/FutureChanges.txt +++ b/LUFA/ManPages/FutureChanges.txt @@ -25,6 +25,7 @@ * -# Consider switch from endpoint numbers to full endpoint addresses to ease future architecture expansion * -# Fix HID report parser usage support for array types * -# Add additional standard request helper functions to host mode + * -# Add Dataflash_SendCommand() * - Documentation/Support * -# Add detailed overviews of how each demo works * -# Add board overviews |