Closed jepler closed 4 years ago
File "/opt/hostedtoolcache/Python/3.9.0/x64/lib/python3.9/site-packages/nordicsemi/dfu/intelhex/__init__.py", line 373, in _tobinstr_really
return asstr(self._tobinarray_really(start, end, pad, size).tostring())
AttributeError: 'array.array' object has no attribute 'tostring'
This is a problem caused by python3.9 removing the tostring method. It can be fixed by setting python to version 3.8 in the CI script. I can file a PR to do this if you need me to.
Erin reports privately that a uf2 I provided her fixed the problem.
Before this, using the "brightness" property in CircuitPython would cause the display to become jumbled. Reproducer script for matrixportal:
After the fix there is only a slight flicker due to the time the display spends with zero brightness.
Thanks to @firepixie for the report!