On branch master
Your branch is up to date with 'origin/master'.
Changes to be committed:
modified: ampy/pyboard.py
The original implementation of stdout_write_bytes() is writing the output byte by byte. This would break the multi-bytes UTF-8 char into mutiple single byte chars and cause problems with non ascii chars.
I modify the implementation to output char by char according to the UTF-8 encoding.
On branch master Your branch is up to date with 'origin/master'.
Changes to be committed: modified: ampy/pyboard.py
The original implementation of stdout_write_bytes() is writing the output byte by byte. This would break the multi-bytes UTF-8 char into mutiple single byte chars and cause problems with non ascii chars.
I modify the implementation to output char by char according to the UTF-8 encoding.