Remove potentially unaligned uint32_t access in HIDParser.c, replace with standard C bit shifts.

This commit is contained in:
Dean Camera 2012-02-20 18:47:25 +00:00
parent 6c738343ae
commit 4068efbd18
9 changed files with 56 additions and 38 deletions

View file

@ -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>

View file

@ -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>