├── .github └── workflows │ └── examples.yml ├── .gitignore ├── LICENSE ├── README.md ├── boards ├── teensy2.json ├── teensy2pp.json ├── teensy30.json ├── teensy31.json ├── teensy35.json ├── teensy36.json ├── teensy40.json ├── teensy41.json ├── teensylc.json └── teensymm.json ├── examples ├── arduino-blink │ ├── .gitignore │ ├── README.md │ ├── include │ │ └── README │ ├── lib │ │ └── README │ ├── platformio.ini │ ├── src │ │ └── Blink.cpp │ └── test │ │ └── README ├── arduino-hid-usb-mouse │ ├── .gitignore │ ├── README.md │ ├── include │ │ └── README │ ├── lib │ │ └── README │ ├── platformio.ini │ ├── src │ │ └── TriangleMove.ino │ └── test │ │ └── README ├── arduino-internal-libs │ ├── .gitignore │ ├── README.md │ ├── include │ │ └── README │ ├── lib │ │ └── README │ ├── platformio.ini │ ├── src │ │ └── ChatServer.ino │ └── test │ │ └── README ├── zephyr-blink │ ├── .gitignore │ ├── README.md │ ├── include │ │ └── README │ ├── lib │ │ └── README │ ├── platformio.ini │ ├── src │ │ └── main.c │ ├── test │ │ └── README │ └── zephyr │ │ ├── CMakeLists.txt │ │ └── prj.conf └── zephyr-synchronization │ ├── .gitignore │ ├── README.md │ ├── include │ └── README │ ├── lib │ └── README │ ├── platformio.ini │ ├── src │ └── main.c │ ├── test │ └── README │ └── zephyr │ ├── CMakeLists.txt │ └── prj.conf ├── misc └── svd │ ├── MK20D5.svd │ ├── MK64F12.svd │ ├── MK66F18.svd │ └── MKL26Z4.svd ├── platform.json └── platform.py /.github/workflows/examples.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/.github/workflows/examples.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/README.md -------------------------------------------------------------------------------- /boards/teensy2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/boards/teensy2.json -------------------------------------------------------------------------------- /boards/teensy2pp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/boards/teensy2pp.json -------------------------------------------------------------------------------- /boards/teensy30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/boards/teensy30.json -------------------------------------------------------------------------------- /boards/teensy31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/boards/teensy31.json -------------------------------------------------------------------------------- /boards/teensy35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/boards/teensy35.json -------------------------------------------------------------------------------- /boards/teensy36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/boards/teensy36.json -------------------------------------------------------------------------------- /boards/teensy40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/boards/teensy40.json -------------------------------------------------------------------------------- /boards/teensy41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/boards/teensy41.json -------------------------------------------------------------------------------- /boards/teensylc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/boards/teensylc.json -------------------------------------------------------------------------------- /boards/teensymm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/boards/teensymm.json -------------------------------------------------------------------------------- /examples/arduino-blink/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | -------------------------------------------------------------------------------- /examples/arduino-blink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-blink/README.md -------------------------------------------------------------------------------- /examples/arduino-blink/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-blink/include/README -------------------------------------------------------------------------------- /examples/arduino-blink/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-blink/lib/README -------------------------------------------------------------------------------- /examples/arduino-blink/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-blink/platformio.ini -------------------------------------------------------------------------------- /examples/arduino-blink/src/Blink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-blink/src/Blink.cpp -------------------------------------------------------------------------------- /examples/arduino-blink/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-blink/test/README -------------------------------------------------------------------------------- /examples/arduino-hid-usb-mouse/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | -------------------------------------------------------------------------------- /examples/arduino-hid-usb-mouse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-hid-usb-mouse/README.md -------------------------------------------------------------------------------- /examples/arduino-hid-usb-mouse/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-hid-usb-mouse/include/README -------------------------------------------------------------------------------- /examples/arduino-hid-usb-mouse/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-hid-usb-mouse/lib/README -------------------------------------------------------------------------------- /examples/arduino-hid-usb-mouse/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-hid-usb-mouse/platformio.ini -------------------------------------------------------------------------------- /examples/arduino-hid-usb-mouse/src/TriangleMove.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-hid-usb-mouse/src/TriangleMove.ino -------------------------------------------------------------------------------- /examples/arduino-hid-usb-mouse/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-hid-usb-mouse/test/README -------------------------------------------------------------------------------- /examples/arduino-internal-libs/.gitignore: -------------------------------------------------------------------------------- 1 | .pio 2 | -------------------------------------------------------------------------------- /examples/arduino-internal-libs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-internal-libs/README.md -------------------------------------------------------------------------------- /examples/arduino-internal-libs/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-internal-libs/include/README -------------------------------------------------------------------------------- /examples/arduino-internal-libs/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-internal-libs/lib/README -------------------------------------------------------------------------------- /examples/arduino-internal-libs/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-internal-libs/platformio.ini -------------------------------------------------------------------------------- /examples/arduino-internal-libs/src/ChatServer.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-internal-libs/src/ChatServer.ino -------------------------------------------------------------------------------- /examples/arduino-internal-libs/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/arduino-internal-libs/test/README -------------------------------------------------------------------------------- /examples/zephyr-blink/.gitignore: -------------------------------------------------------------------------------- 1 | .pio -------------------------------------------------------------------------------- /examples/zephyr-blink/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-blink/README.md -------------------------------------------------------------------------------- /examples/zephyr-blink/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-blink/include/README -------------------------------------------------------------------------------- /examples/zephyr-blink/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-blink/lib/README -------------------------------------------------------------------------------- /examples/zephyr-blink/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-blink/platformio.ini -------------------------------------------------------------------------------- /examples/zephyr-blink/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-blink/src/main.c -------------------------------------------------------------------------------- /examples/zephyr-blink/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-blink/test/README -------------------------------------------------------------------------------- /examples/zephyr-blink/zephyr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-blink/zephyr/CMakeLists.txt -------------------------------------------------------------------------------- /examples/zephyr-blink/zephyr/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-blink/zephyr/prj.conf -------------------------------------------------------------------------------- /examples/zephyr-synchronization/.gitignore: -------------------------------------------------------------------------------- 1 | .pio -------------------------------------------------------------------------------- /examples/zephyr-synchronization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-synchronization/README.md -------------------------------------------------------------------------------- /examples/zephyr-synchronization/include/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-synchronization/include/README -------------------------------------------------------------------------------- /examples/zephyr-synchronization/lib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-synchronization/lib/README -------------------------------------------------------------------------------- /examples/zephyr-synchronization/platformio.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-synchronization/platformio.ini -------------------------------------------------------------------------------- /examples/zephyr-synchronization/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-synchronization/src/main.c -------------------------------------------------------------------------------- /examples/zephyr-synchronization/test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-synchronization/test/README -------------------------------------------------------------------------------- /examples/zephyr-synchronization/zephyr/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-synchronization/zephyr/CMakeLists.txt -------------------------------------------------------------------------------- /examples/zephyr-synchronization/zephyr/prj.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/examples/zephyr-synchronization/zephyr/prj.conf -------------------------------------------------------------------------------- /misc/svd/MK20D5.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/misc/svd/MK20D5.svd -------------------------------------------------------------------------------- /misc/svd/MK64F12.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/misc/svd/MK64F12.svd -------------------------------------------------------------------------------- /misc/svd/MK66F18.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/misc/svd/MK66F18.svd -------------------------------------------------------------------------------- /misc/svd/MKL26Z4.svd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/misc/svd/MKL26Z4.svd -------------------------------------------------------------------------------- /platform.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/platform.json -------------------------------------------------------------------------------- /platform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/platformio/platform-teensy/HEAD/platform.py --------------------------------------------------------------------------------