├── README.md ├── boards.png ├── boards ├── BC26.json ├── BC66.json ├── M66.json └── MC60.json ├── examples ├── hello_bc66 │ ├── .gitignore │ ├── .travis.yml │ ├── README.rst │ ├── lib │ │ └── readme.txt │ ├── platformio.ini │ └── src │ │ └── main.c ├── hello_m66 │ ├── .gitignore │ ├── .travis.yml │ ├── README.rst │ ├── lib │ │ └── readme.txt │ ├── platformio.ini │ └── src │ │ └── main.c └── hello_mc60 │ ├── .gitignore │ ├── .travis.yml │ ├── README.rst │ ├── lib │ └── readme.txt │ ├── platformio.ini │ └── src │ └── main.c ├── manifest.json ├── on_linux.png ├── platform.json ├── platform.png ├── project.png └── screenshot.png /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/README.md -------------------------------------------------------------------------------- /boards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/boards.png -------------------------------------------------------------------------------- /boards/BC26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/boards/BC26.json -------------------------------------------------------------------------------- /boards/BC66.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/boards/BC66.json -------------------------------------------------------------------------------- /boards/M66.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/boards/M66.json -------------------------------------------------------------------------------- /boards/MC60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/boards/MC60.json -------------------------------------------------------------------------------- /examples/hello_bc66/.gitignore: -------------------------------------------------------------------------------- 1 | .pioenvs 2 | -------------------------------------------------------------------------------- /examples/hello_bc66/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/examples/hello_bc66/.travis.yml -------------------------------------------------------------------------------- /examples/hello_bc66/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/examples/hello_bc66/README.rst -------------------------------------------------------------------------------- /examples/hello_bc66/lib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/examples/hello_bc66/lib/readme.txt -------------------------------------------------------------------------------- /examples/hello_bc66/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/examples/hello_bc66/platformio.ini -------------------------------------------------------------------------------- /examples/hello_bc66/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/examples/hello_bc66/src/main.c -------------------------------------------------------------------------------- /examples/hello_m66/.gitignore: -------------------------------------------------------------------------------- 1 | .pioenvs 2 | -------------------------------------------------------------------------------- /examples/hello_m66/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/examples/hello_m66/.travis.yml -------------------------------------------------------------------------------- /examples/hello_m66/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/examples/hello_m66/README.rst -------------------------------------------------------------------------------- /examples/hello_m66/lib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/examples/hello_m66/lib/readme.txt -------------------------------------------------------------------------------- /examples/hello_m66/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/examples/hello_m66/platformio.ini -------------------------------------------------------------------------------- /examples/hello_m66/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/examples/hello_m66/src/main.c -------------------------------------------------------------------------------- /examples/hello_mc60/.gitignore: -------------------------------------------------------------------------------- 1 | .pioenvs 2 | -------------------------------------------------------------------------------- /examples/hello_mc60/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/examples/hello_mc60/.travis.yml -------------------------------------------------------------------------------- /examples/hello_mc60/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/examples/hello_mc60/README.rst -------------------------------------------------------------------------------- /examples/hello_mc60/lib/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/examples/hello_mc60/lib/readme.txt -------------------------------------------------------------------------------- /examples/hello_mc60/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/examples/hello_mc60/platformio.ini -------------------------------------------------------------------------------- /examples/hello_mc60/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/examples/hello_mc60/src/main.c -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/manifest.json -------------------------------------------------------------------------------- /on_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/on_linux.png -------------------------------------------------------------------------------- /platform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/platform.json -------------------------------------------------------------------------------- /platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/platform.png -------------------------------------------------------------------------------- /project.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/project.png -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Wiz-IO/platform-opencpu/HEAD/screenshot.png --------------------------------------------------------------------------------