├── .github └── workflows │ └── examples.yml ├── .gitignore ├── LICENSE.md ├── README.md ├── boards ├── sipeed-MF1.json ├── sipeed-maix-bit-mic.json ├── sipeed-maix-bit.json ├── sipeed-maix-go.json ├── sipeed-maix-one-dock.json └── sipeed-maixduino.json ├── examples ├── arduino-blink │ ├── .gitignore │ ├── README.md │ ├── include │ │ └── README │ ├── lib │ │ └── README │ ├── platformio.ini │ ├── src │ │ └── Blink.cpp │ └── test │ │ └── README ├── kendryte-freertos-sdk_hello │ ├── .gitignore │ ├── README.md │ ├── include │ │ └── README │ ├── lib │ │ └── README │ ├── platformio.ini │ ├── src │ │ └── hello.c │ └── test │ │ └── README └── kendryte-standalone-sdk_hello │ ├── .gitignore │ ├── README.md │ ├── include │ └── README │ ├── lib │ └── README │ ├── platformio.ini │ ├── src │ └── hello.c │ └── test │ └── README ├── platform.json └── platform.py /.github/workflows/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/.github/workflows/examples.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/README.md -------------------------------------------------------------------------------- /boards/sipeed-MF1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/boards/sipeed-MF1.json -------------------------------------------------------------------------------- /boards/sipeed-maix-bit-mic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/boards/sipeed-maix-bit-mic.json -------------------------------------------------------------------------------- /boards/sipeed-maix-bit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/boards/sipeed-maix-bit.json -------------------------------------------------------------------------------- /boards/sipeed-maix-go.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/boards/sipeed-maix-go.json -------------------------------------------------------------------------------- /boards/sipeed-maix-one-dock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/boards/sipeed-maix-one-dock.json -------------------------------------------------------------------------------- /boards/sipeed-maixduino.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/boards/sipeed-maixduino.json -------------------------------------------------------------------------------- /examples/arduino-blink/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | -------------------------------------------------------------------------------- /examples/arduino-blink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/arduino-blink/README.md -------------------------------------------------------------------------------- /examples/arduino-blink/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/arduino-blink/include/README -------------------------------------------------------------------------------- /examples/arduino-blink/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/arduino-blink/lib/README -------------------------------------------------------------------------------- /examples/arduino-blink/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/arduino-blink/platformio.ini -------------------------------------------------------------------------------- /examples/arduino-blink/src/Blink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/arduino-blink/src/Blink.cpp -------------------------------------------------------------------------------- /examples/arduino-blink/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/arduino-blink/test/README -------------------------------------------------------------------------------- /examples/kendryte-freertos-sdk_hello/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | -------------------------------------------------------------------------------- /examples/kendryte-freertos-sdk_hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/kendryte-freertos-sdk_hello/README.md -------------------------------------------------------------------------------- /examples/kendryte-freertos-sdk_hello/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/kendryte-freertos-sdk_hello/include/README -------------------------------------------------------------------------------- /examples/kendryte-freertos-sdk_hello/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/kendryte-freertos-sdk_hello/lib/README -------------------------------------------------------------------------------- /examples/kendryte-freertos-sdk_hello/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/kendryte-freertos-sdk_hello/platformio.ini -------------------------------------------------------------------------------- /examples/kendryte-freertos-sdk_hello/src/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/kendryte-freertos-sdk_hello/src/hello.c -------------------------------------------------------------------------------- /examples/kendryte-freertos-sdk_hello/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/kendryte-freertos-sdk_hello/test/README -------------------------------------------------------------------------------- /examples/kendryte-standalone-sdk_hello/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | -------------------------------------------------------------------------------- /examples/kendryte-standalone-sdk_hello/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/kendryte-standalone-sdk_hello/README.md -------------------------------------------------------------------------------- /examples/kendryte-standalone-sdk_hello/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/kendryte-standalone-sdk_hello/include/README -------------------------------------------------------------------------------- /examples/kendryte-standalone-sdk_hello/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/kendryte-standalone-sdk_hello/lib/README -------------------------------------------------------------------------------- /examples/kendryte-standalone-sdk_hello/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/kendryte-standalone-sdk_hello/platformio.ini -------------------------------------------------------------------------------- /examples/kendryte-standalone-sdk_hello/src/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/kendryte-standalone-sdk_hello/src/hello.c -------------------------------------------------------------------------------- /examples/kendryte-standalone-sdk_hello/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/examples/kendryte-standalone-sdk_hello/test/README -------------------------------------------------------------------------------- /platform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/platform.json -------------------------------------------------------------------------------- /platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sipeed/platform-kendryte210/HEAD/platform.py --------------------------------------------------------------------------------