├── .github └── workflows │ └── examples.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples └── hello-world │ ├── .gitignore │ ├── README.md │ ├── include │ └── README │ ├── lib │ └── README │ ├── platformio.ini │ ├── src │ └── main.c │ └── test │ └── README └── platform.json /.github/workflows/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-native/HEAD/.github/workflows/examples.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-native/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-native/HEAD/README.md -------------------------------------------------------------------------------- /examples/hello-world/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | -------------------------------------------------------------------------------- /examples/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-native/HEAD/examples/hello-world/README.md -------------------------------------------------------------------------------- /examples/hello-world/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-native/HEAD/examples/hello-world/include/README -------------------------------------------------------------------------------- /examples/hello-world/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-native/HEAD/examples/hello-world/lib/README -------------------------------------------------------------------------------- /examples/hello-world/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-native/HEAD/examples/hello-world/platformio.ini -------------------------------------------------------------------------------- /examples/hello-world/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-native/HEAD/examples/hello-world/src/main.c -------------------------------------------------------------------------------- /examples/hello-world/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-native/HEAD/examples/hello-world/test/README -------------------------------------------------------------------------------- /platform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-native/HEAD/platform.json --------------------------------------------------------------------------------