2014-03-12 12:35 AM
Hello,
What does stm32l100 follow Big Enidian or Small Enidian..?2014-03-12 03:12 AM
Little endian only.
See PM0056 rev.5, ch.2.2.6 and SCB_AIRCR.ENDIANESS. Also see RM0041 ch. 2.2. JW2014-03-12 05:15 AM
2014-03-12 07:05 AM
There are never any easy solutions when dealing with two processors/architectures using different endian configurations.
You have to pay careful attention to ALL structures and parameters and the bit/byte order expectations. With compilers bit-fields are a particular area of grief. Socket implementations have macro's to handle such things The Thumb instruction set also contains several bit/byte reordering commands.http://infocenter.arm.com/help/index.jsp?topic=/com.arm.doc.dui0552a/BABJJDDB.html
2014-03-12 11:36 PM