You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A proof of concept for executing Embedded Swift code on the [Raspberry Pi Pico](https://www.raspberrypi.com/products/raspberry-pi-pico/). The main program is written in C (built with the official Pico C SDK) and calls into a statically linked Swift library.
4
+
5
+
## Prerequisites and Installation
6
+
7
+
### Hardware
8
+
9
+
- A [Raspberry Pi Pico](https://www.raspberrypi.com/products/raspberry-pi-pico/)
10
+
- Optional but recommended: a [Raspberry Pi Debug Probe](https://www.raspberrypi.com/products/debug-probe/) for more convenient flashing
11
+
12
+
### Software
13
+
14
+
- Host OS: macOS 13.x or 14.x
15
+
16
+
- A recent nightly Swift toolchain from [swift.org](https://www.swift.org/download/). Tested with the December 7, 2023 toolchain.
17
+
18
+
- A clone of the [Raspberry Pi Pico C/C++ SDK](https://github.com/raspberrypi/pico-sdk/):
19
+
20
+
```sh
21
+
# This project expects to find pico-sdk in a sibling directory to itself.
0 commit comments