Fix: Correct byte order in address representation for 'xx1527' model#124
Fix: Correct byte order in address representation for 'xx1527' model#124aKaReZa75 wants to merge 1 commit intosigrokproject:masterfrom
Conversation
|
Hello, If you believe it could be useful, I can share the complete source code of that project and assist you step by step in adapting or developing an analyzer specifically for the SIF protocol. Best regards, and I’ll be glad to support you throughout the process. |
|
Thank you very much for your help, I really need the full source code of the EV1527 project, they are very similar. |
|
You're very welcome! |
|
The project is now ready, you can check it out here: https://github.com/aKaReZa75/AVR_ev1527 |


Summary
This pull request fixes a bug in the
xx1527model where the address bytes were displayed in the wrong order.Problem
The original code incorrectly formats the 24-bit address by reversing the byte order:
This results in the least significant byte appearing first, which is misleading and inconsistent with common address representations.
Fix
Replaced the line with:
This correctly displays the most significant byte first, ensuring the address is shown in standard big-endian order (MSB → LSB).
Impact