diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2012-02-20 18:47:25 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2012-02-20 18:47:25 +0000 |
commit | 4068efbd1898058854f9ca5a967bc5ad5a851759 (patch) | |
tree | 2b69bbeafedf62cae42634354d4c4ea3401f9fdb /LUFA/DoxygenPages | |
parent | 6c738343ae7bab9bd96aa5fc29d5656d966647b5 (diff) | |
download | lufa-4068efbd1898058854f9ca5a967bc5ad5a851759.tar.gz lufa-4068efbd1898058854f9ca5a967bc5ad5a851759.tar.bz2 lufa-4068efbd1898058854f9ca5a967bc5ad5a851759.zip |
Remove potentially unaligned uint32_t access in HIDParser.c, replace with standard C bit shifts.
Diffstat (limited to 'LUFA/DoxygenPages')
-rw-r--r-- | LUFA/DoxygenPages/ChangeLog.txt | 18 | ||||
-rw-r--r-- | LUFA/DoxygenPages/MigrationInformation.txt | 4 |
2 files changed, 20 insertions, 2 deletions
diff --git a/LUFA/DoxygenPages/ChangeLog.txt b/LUFA/DoxygenPages/ChangeLog.txt index 534812f83..c13ce8fb8 100644 --- a/LUFA/DoxygenPages/ChangeLog.txt +++ b/LUFA/DoxygenPages/ChangeLog.txt @@ -7,7 +7,23 @@ /** \page Page_ChangeLog Project Changelog * * \section Sec_ChangeLogXXXXXX Version XXXXXX - * None. + * <b>New:</b> + * - Core: + * - None + * - Library Applications: + * - None + * + * <b>Changed:</b> + * - Core: + * - Android Accessory Host property strings changed from a struct of pointer to an array to prevent unaligned access on greater than 8-bit architectures + * - Library Applications: + * - None + * + * <b>Fixed:</b> + * - Core: + * - None + * - Library Applications: + * - None * * \section Sec_ChangeLog120219 Version 120219 * <b>New:</b> diff --git a/LUFA/DoxygenPages/MigrationInformation.txt b/LUFA/DoxygenPages/MigrationInformation.txt index 2c62d836d..0210a37d8 100644 --- a/LUFA/DoxygenPages/MigrationInformation.txt +++ b/LUFA/DoxygenPages/MigrationInformation.txt @@ -11,7 +11,9 @@ * areas relevant to making older projects compatible with the API changes of each new release. * * \section Sec_MigrationXXXXXX Migrating from 120219 to XXXXXX - * None. + * <b>Host Mode</b> + * - The Android Accessory Host class driver property strings are now a array of \c char* rather than a struct of named pointers. Existing applications + * should use C99 Designated Initializers with the property string indexes located in \ref AOA_Strings_t instead. * * \section Sec_Migration120219 Migrating from 111009 to 120219 * <b>USB Core</b> |