Skip to content

Commit e79c9ae

Browse files
committed
Fix links
1 parent 91a820f commit e79c9ae

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Sources/EmbeddedSwift/Documentation.docc/CompilerDetails/Status.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Implementation status of compiler and language features in Embedded Swift, compa
1616
| Metatypes | No, currently only allowed as unused arguments (type hints) |
1717
| Untyped throwing | No, intentionally unsupported long-term (typed throwing should be used instead) |
1818
| Weak references, unowned references | No |
19-
| Non-final generic class methods | No, intentionally unsupported long-term, see <[Embedded Swift -- Non-final generic methods](NonFinalGenericMethods.md)>|
19+
| Non-final generic class methods | No, intentionally unsupported long-term, see <[Embedded Swift -- Non-final generic methods](NonFinalGenericMethods)>|
2020
| Parameter packs (variadic generics) | No, not yet supported |
2121

2222
## Embedded Standard Library Breakdown

Sources/EmbeddedSwift/Documentation.docc/GettingStarted/LanguageSubset.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ Note that there are no behavior changes in Embedded Swift compared to full Swift
2727

2828
## Further resources
2929

30-
The above lists are describing features that are removed from Embedded Swift *by design*. Since Embedded Swift is currently an experimental preview, there might also be features that are not yet implemented. See the in-development status at [Embedded Swift -- Status](EmbeddedSwiftStatus.md).
30+
The above lists are describing features that are removed from Embedded Swift *by design*. Since Embedded Swift is currently an experimental preview, there might also be features that are not yet implemented. See the in-development status at [Embedded Swift -- Status](status).

Sources/EmbeddedSwift/Documentation.docc/GuidedExamples/PicoGuide.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ $ export PICO_SDK_PATH=... # location to your Pico SDK
2323
$ export PICO_TOOLCHAIN_PATH=... # location to the Arm Embedded Toolchain
2424
```
2525

26-
If you have the Wi-Fi enabled Pico W board instead of the regular Pico, note that you will need a slightly different setup described in the [Pico W example project](https://github.com/apple/swift-embedded-examples/tree/main/pico-w-blink-sdk), and just specifying `PICO_BOARD=pico_w` is not going to work.
26+
If you have the Wi-Fi enabled Pico W board instead of the regular Pico, note that you will need a slightly different setup described in the [Pico W example project](https://github.com/apple/swift-embedded-examples/tree/main/rpi-picow-blink-sdk), and just specifying `PICO_BOARD=pico_w` is not going to work.
2727

2828
Install [CMake 3.29](https://cmake.org/) or newer.
2929

@@ -48,7 +48,7 @@ bin/ libexec/
4848

4949
## Building a "blinky" embedded app
5050

51-
The standard "Hello, World" in embedded development is a program that repeatedly blinks an LED. Let's build one. The following setup can be also found in [swift-embedded-examples](https://github.com/apple/swift-embedded-examples/blob/main/pico-blink-sdk/README.md), but we're going to show below that all you need is just three files.
51+
The standard "Hello, World" in embedded development is a program that repeatedly blinks an LED. Let's build one. The following setup can be also found in [swift-embedded-examples](https://github.com/apple/swift-embedded-examples/blob/main/rpi-pico-blink-sdk/README.md), but we're going to show below that all you need is just three files.
5252
Let's create a new empty directory and prepare a simple structure for a CMake-based project that can be used on top of the Pico SDK:
5353

5454
```

0 commit comments

Comments
 (0)