mpypack: project packup and upload tool for mpy
Posted: Thu Aug 12, 2021 12:47 pm
mpypack is a micropython project packing tool. this will make the development of big project more easily.
The whole project folder will sync to the mpy board, you can upload the folder with a single command.
mpypack will only upload the necessary files, so a big project in a folder will not be a problem.
And it can also compile the code automatically before upload (with mpy-cross).
Details on github: mpypack
The useage is simple, to build the project:
to upload the project to board:
with the config file .mpypack.conf, you can skip the "port" parameter, and test your code easily. the project will be upload to the board, and open a "REPL" for you to test your code:
Here is an example project that using mpypack as its packing tool: play32_framework
The whole project folder will sync to the mpy board, you can upload the folder with a single command.
mpypack will only upload the necessary files, so a big project in a folder will not be a problem.
And it can also compile the code automatically before upload (with mpy-cross).
Details on github: mpypack
The useage is simple, to build the project:
Code: Select all
mpypack build
Code: Select all
mpypack -p [port] sync
Code: Select all
mpypack sync; mpypack repl