I checked the data sheet of STM32F407 and it says it is little endian.However, when I test in a real device in MDK, it shows that it is big endian. I assign an int "testttt" as 0x12345678. Then, in memory window, it shows as 0x12345678 which is big e...