nickzoic / mpy-utils

Utility programs for Micropython ...
MIT License
104 stars 23 forks source link

Faster transfer for binaries #9

Open nickzoic opened 7 years ago

nickzoic commented 7 years ago

micropython includes uzlib and ubinascii so we could get a lot better throughput using a combination of those instead of repr.

uzlib helps quite a lot with source code and ubinascii helps a lot with binaries (since repr ends up full of \xf0 type codes, better to base64 encode them)