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
In lines 393 and 399 in flashdevice.py self.PageSize/2
results in count becoming a real, causing TypeError: 'float' object cannot be interpreted as an integer when reading the chip
I've changed it to self.PageSize//2
and it runs fine
In lines 393 and 399 in flashdevice.py
self.PageSize/2results in count becoming a real, causing
TypeError: 'float' object cannot be interpreted as an integerwhen reading the chipI've changed it to
self.PageSize//2and it runs fine