├── .github └── workflows │ └── examples.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── boards ├── nanorp2040connect.json └── pico.json ├── examples ├── arduino-blink │ ├── .gitignore │ ├── README.md │ ├── include │ │ └── README │ ├── lib │ │ └── README │ ├── platformio.ini │ ├── src │ │ └── main.cpp │ └── test │ │ └── README └── arduino-external-libs │ ├── .gitignore │ ├── README.md │ ├── include │ └── README │ ├── lib │ └── README │ ├── platformio.ini │ ├── src │ └── main.cpp │ └── test │ └── README ├── misc └── svd │ └── rp2040.svd ├── platform.json └── platform.py /.github/workflows/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/.github/workflows/examples.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/README.md -------------------------------------------------------------------------------- /boards/nanorp2040connect.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/boards/nanorp2040connect.json -------------------------------------------------------------------------------- /boards/pico.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/boards/pico.json -------------------------------------------------------------------------------- /examples/arduino-blink/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | -------------------------------------------------------------------------------- /examples/arduino-blink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/examples/arduino-blink/README.md -------------------------------------------------------------------------------- /examples/arduino-blink/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/examples/arduino-blink/include/README -------------------------------------------------------------------------------- /examples/arduino-blink/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/examples/arduino-blink/lib/README -------------------------------------------------------------------------------- /examples/arduino-blink/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/examples/arduino-blink/platformio.ini -------------------------------------------------------------------------------- /examples/arduino-blink/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/examples/arduino-blink/src/main.cpp -------------------------------------------------------------------------------- /examples/arduino-blink/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/examples/arduino-blink/test/README -------------------------------------------------------------------------------- /examples/arduino-external-libs/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | -------------------------------------------------------------------------------- /examples/arduino-external-libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/examples/arduino-external-libs/README.md -------------------------------------------------------------------------------- /examples/arduino-external-libs/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/examples/arduino-external-libs/include/README -------------------------------------------------------------------------------- /examples/arduino-external-libs/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/examples/arduino-external-libs/lib/README -------------------------------------------------------------------------------- /examples/arduino-external-libs/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/examples/arduino-external-libs/platformio.ini -------------------------------------------------------------------------------- /examples/arduino-external-libs/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/examples/arduino-external-libs/src/main.cpp -------------------------------------------------------------------------------- /examples/arduino-external-libs/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/examples/arduino-external-libs/test/README -------------------------------------------------------------------------------- /misc/svd/rp2040.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/misc/svd/rp2040.svd -------------------------------------------------------------------------------- /platform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/platform.json -------------------------------------------------------------------------------- /platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-raspberrypi/HEAD/platform.py --------------------------------------------------------------------------------