In the manual they write FF8055AAh.
In the program I find the value AA5580FF.
This isn’t little or big-endian. But what is it?
In the manual they write FF8055AAh. In the program I find the value AA5580FF.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It is little-endian (assuming that the value in the manual is big-engian). The bytes are { FF, 80, 55, AA } so when you reverse them you have { AA, 55, 80, FF }.