You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
application using i8080 stopped working starting esp-hal 0.21.0.
Detailed discussion regarding the issue: #2352 .
Findings are this is due to change made in set_byte_order which the application relies on.
In 0.21.0 the function change the byte ordering for both the 8bits and the 16bits case.
Prior to that the change was made depending on what the word size of the data is.
Seems like doing both changes in either case doesn't work well, at least for 8 bits i8080 and can't send the data properly to the device with if changing the byte order using set_byte_order.
application using
i8080
stopped working startingesp-hal 0.21.0
.Detailed discussion regarding the issue: #2352 .
Findings are this is due to change made in
set_byte_order
which the application relies on.In 0.21.0 the function change the byte ordering for both the 8bits and the 16bits case.
Prior to that the change was made depending on what the word size of the data is.
Seems like doing both changes in either case doesn't work well, at least for 8 bits i8080 and can't send the data properly to the device with if changing the byte order using
set_byte_order
.0.20.0 code:
0.20.1 code:
The text was updated successfully, but these errors were encountered: