├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.rst ├── circle_tests.py ├── docs └── index.md ├── mbed ├── __init__.py ├── __main__.py ├── mbed.py └── mbed_terminal.py ├── mkdocs.yml ├── requirements.txt ├── setup.py ├── test ├── README.md ├── add_test.py ├── import_test.py ├── ls_test.py ├── remove_test.py ├── sync_update_test.py └── util.py └── tools └── bash_completion ├── generator.py ├── install.md ├── mbed └── templates ├── .README.md.swp ├── README.md ├── boilerplate.tmplt ├── command.tmplt ├── ide.tmplt ├── mbed.tmplt ├── protocol.tmplt ├── scm.tmplt ├── target.tmplt └── toolchain.tmplt /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/README.rst -------------------------------------------------------------------------------- /circle_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/circle_tests.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/docs/index.md -------------------------------------------------------------------------------- /mbed/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mbed/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/mbed/__main__.py -------------------------------------------------------------------------------- /mbed/mbed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/mbed/mbed.py -------------------------------------------------------------------------------- /mbed/mbed_terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/mbed/mbed_terminal.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyserial>=3.0,<4.0 2 | mbed-os-tools>=0.0.9 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/setup.py -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/test/README.md -------------------------------------------------------------------------------- /test/add_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/test/add_test.py -------------------------------------------------------------------------------- /test/import_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/test/import_test.py -------------------------------------------------------------------------------- /test/ls_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/test/ls_test.py -------------------------------------------------------------------------------- /test/remove_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/test/remove_test.py -------------------------------------------------------------------------------- /test/sync_update_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/test/sync_update_test.py -------------------------------------------------------------------------------- /test/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/test/util.py -------------------------------------------------------------------------------- /tools/bash_completion/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/tools/bash_completion/generator.py -------------------------------------------------------------------------------- /tools/bash_completion/install.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/tools/bash_completion/install.md -------------------------------------------------------------------------------- /tools/bash_completion/mbed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/tools/bash_completion/mbed -------------------------------------------------------------------------------- /tools/bash_completion/templates/.README.md.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/tools/bash_completion/templates/.README.md.swp -------------------------------------------------------------------------------- /tools/bash_completion/templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/tools/bash_completion/templates/README.md -------------------------------------------------------------------------------- /tools/bash_completion/templates/boilerplate.tmplt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/tools/bash_completion/templates/boilerplate.tmplt -------------------------------------------------------------------------------- /tools/bash_completion/templates/command.tmplt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/tools/bash_completion/templates/command.tmplt -------------------------------------------------------------------------------- /tools/bash_completion/templates/ide.tmplt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/tools/bash_completion/templates/ide.tmplt -------------------------------------------------------------------------------- /tools/bash_completion/templates/mbed.tmplt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/tools/bash_completion/templates/mbed.tmplt -------------------------------------------------------------------------------- /tools/bash_completion/templates/protocol.tmplt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/tools/bash_completion/templates/protocol.tmplt -------------------------------------------------------------------------------- /tools/bash_completion/templates/scm.tmplt: -------------------------------------------------------------------------------- 1 | __mbedcomp "bld git hg" 2 | -------------------------------------------------------------------------------- /tools/bash_completion/templates/target.tmplt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/tools/bash_completion/templates/target.tmplt -------------------------------------------------------------------------------- /tools/bash_completion/templates/toolchain.tmplt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ARMmbed/mbed-cli/HEAD/tools/bash_completion/templates/toolchain.tmplt --------------------------------------------------------------------------------