├── .gitignore ├── LICENSE ├── README.md ├── Vagrantfile ├── scripts ├── build_codal.sh ├── build_cpp.sh ├── build_pxt.sh ├── build_upy1.sh ├── build_upy2.sh ├── install_build-tools.sh ├── install_gcc-arm.sh └── install_yotta.sh ├── upy.py └── vagrant_shared └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosperate/microbit-dev-env/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosperate/microbit-dev-env/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosperate/microbit-dev-env/HEAD/README.md -------------------------------------------------------------------------------- /Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosperate/microbit-dev-env/HEAD/Vagrantfile -------------------------------------------------------------------------------- /scripts/build_codal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosperate/microbit-dev-env/HEAD/scripts/build_codal.sh -------------------------------------------------------------------------------- /scripts/build_cpp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosperate/microbit-dev-env/HEAD/scripts/build_cpp.sh -------------------------------------------------------------------------------- /scripts/build_pxt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosperate/microbit-dev-env/HEAD/scripts/build_pxt.sh -------------------------------------------------------------------------------- /scripts/build_upy1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosperate/microbit-dev-env/HEAD/scripts/build_upy1.sh -------------------------------------------------------------------------------- /scripts/build_upy2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosperate/microbit-dev-env/HEAD/scripts/build_upy2.sh -------------------------------------------------------------------------------- /scripts/install_build-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosperate/microbit-dev-env/HEAD/scripts/install_build-tools.sh -------------------------------------------------------------------------------- /scripts/install_gcc-arm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosperate/microbit-dev-env/HEAD/scripts/install_gcc-arm.sh -------------------------------------------------------------------------------- /scripts/install_yotta.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosperate/microbit-dev-env/HEAD/scripts/install_yotta.sh -------------------------------------------------------------------------------- /upy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosperate/microbit-dev-env/HEAD/upy.py -------------------------------------------------------------------------------- /vagrant_shared/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/carlosperate/microbit-dev-env/HEAD/vagrant_shared/README.md --------------------------------------------------------------------------------