This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Place this file here: ~./config/mpremote/config.py | |
| # Debug: Will mount your local ./src folder to the MCU and run main | |
| # Deploy: Will copy all your files to the MCU so it can run on its own | |
| # Clear: Removes all files from the MCU | |
| commands = { | |
| "clear": ["rm", "-r", ":"], | |
| "deploy": ["cp", "-r", "src/.", ":"], | |
| "debug": ["mount", "./src", "exec", "import main"], |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rm -rf output | |
| mkdir output | |
| docker run -w /kikit \ | |
| -v $(pwd):/kikit \ | |
| yaqwsx/kikit:nightly-m1 \ | |
| kikit panelize -p kikit-panel-preset.json my-project.kicad_pcb \ | |
| output/my-project-panel.kicad_pcb | |
| docker run -w /kikit \ |