Skip to content

Commit 0c475a4

Browse files
authored
Merge branch 'main' into fix/error-display-size
2 parents 99a63f3 + 82be18d commit 0c475a4

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Note that the SDK integration examples (Pico SDK, Zephyr SDK, etc.) are not reco
6060
| [swift-picosystem-example](https://github.com/jerrodputman/swift-picosystem-example) | PicoSystem | An Embedded Swift demo running on the Pimoroni PicoSystem |
6161
| [PlaydateKit](https://github.com/finnvoor/PlaydateKit) | Playdate | A full featured framework for building Playdate games using Embedded Swift. |
6262
| [swift-playdate-examples](https://github.com/apple/swift-playdate-examples) | Playdate | An Embedded Swift game running on Playdate by Panic. |
63+
| [swift-stm32c011-examples](https://github.com/xtremekforever/swift-stm32c011-examples) | STM32 | Examples of running Embedded Swift on the STM32C011, which is a tiny MCU with only 6KB of SRAM and 32KB of flash. |
6364
| [swift-for-wasm-examples](https://github.com/apple/swift-for-wasm-examples) | Web | A "Swift Audio Workstation" example built with Swift for WebAssembly running in the browser using Embedded Swift. |
6465

6566
Please note that the presence of community repositories and devices in this list does not constitute a recommendation or endorsement. If there's a project you'd like to see included here, please [submit an issue](https://github.com/apple/swift-embedded-examples/issues/new) with the details.

pico2-neopixel/Sources/Application/Application.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ func configureOutputPin() {
4848
/// `clkdiv_restart` to clear any persisted state.
4949
func configurePio() {
5050
// Load the assembled program directly into the PIO's instruction memory.
51-
withUnsafeBytes(of: WS2812.pio_instructions) { pointer in
51+
withUnsafeBytes(of: WS2812.pioInstructions) { pointer in
5252
let pioInstructions = pointer.assumingMemoryBound(to: UInt16.self)
5353
for (index, pio_instr) in pioInstructions.enumerated() {
5454
pio0.instr_mem[index].write { w in

0 commit comments

Comments
 (0)