diff options
| -rwxr-xr-x | .github/ci/doc.sh | 3 | ||||
| -rw-r--r-- | cyw43-pio/Cargo.toml | 5 | ||||
| -rw-r--r-- | cyw43/Cargo.toml | 6 | ||||
| -rw-r--r-- | embassy-net-w5500/Cargo.toml | 5 |
4 files changed, 19 insertions, 0 deletions
diff --git a/.github/ci/doc.sh b/.github/ci/doc.sh index 7f7dfaa03..736249368 100755 --- a/.github/ci/doc.sh +++ b/.github/ci/doc.sh | |||
| @@ -29,6 +29,9 @@ docserver-builder -i ./embassy-time -o crates/embassy-time/git.zup | |||
| 29 | docserver-builder -i ./embassy-usb -o crates/embassy-usb/git.zup | 29 | docserver-builder -i ./embassy-usb -o crates/embassy-usb/git.zup |
| 30 | docserver-builder -i ./embassy-usb-driver -o crates/embassy-usb-driver/git.zup | 30 | docserver-builder -i ./embassy-usb-driver -o crates/embassy-usb-driver/git.zup |
| 31 | docserver-builder -i ./embassy-usb-logger -o crates/embassy-usb-logger/git.zup | 31 | docserver-builder -i ./embassy-usb-logger -o crates/embassy-usb-logger/git.zup |
| 32 | docserver-builder -i ./cyw43 -o crates/cyw43/git.zup | ||
| 33 | docserver-builder -i ./cyw43-pio -o crates/cyw43-pio/git.zup | ||
| 34 | docserver-builder -i ./embassy-net-w5500 -o crates/embassy-net-w5500/git.zup | ||
| 32 | 35 | ||
| 33 | export KUBECONFIG=/ci/secrets/kubeconfig.yml | 36 | export KUBECONFIG=/ci/secrets/kubeconfig.yml |
| 34 | POD=$(kubectl -n embassy get po -l app=docserver -o jsonpath={.items[0].metadata.name}) | 37 | POD=$(kubectl -n embassy get po -l app=docserver -o jsonpath={.items[0].metadata.name}) |
diff --git a/cyw43-pio/Cargo.toml b/cyw43-pio/Cargo.toml index 6e9e784a0..14c07178f 100644 --- a/cyw43-pio/Cargo.toml +++ b/cyw43-pio/Cargo.toml | |||
| @@ -15,3 +15,8 @@ pio-proc = "0.2" | |||
| 15 | pio = "0.2.1" | 15 | pio = "0.2.1" |
| 16 | fixed = "1.23.1" | 16 | fixed = "1.23.1" |
| 17 | defmt = { version = "0.3", optional = true } | 17 | defmt = { version = "0.3", optional = true } |
| 18 | |||
| 19 | [package.metadata.embassy_docs] | ||
| 20 | src_base = "https://github.com/embassy-rs/embassy/blob/cyw43-pio-v$VERSION/cyw43-pio/src/" | ||
| 21 | src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/cyw43-pio/src/" | ||
| 22 | target = "thumbv6m-none-eabi" | ||
diff --git a/cyw43/Cargo.toml b/cyw43/Cargo.toml index c7f8816f5..61caa0272 100644 --- a/cyw43/Cargo.toml +++ b/cyw43/Cargo.toml | |||
| @@ -26,3 +26,9 @@ futures = { version = "0.3.17", default-features = false, features = ["async-awa | |||
| 26 | 26 | ||
| 27 | embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.10" } | 27 | embedded-hal-1 = { package = "embedded-hal", version = "1.0.0-alpha.10" } |
| 28 | num_enum = { version = "0.5.7", default-features = false } | 28 | num_enum = { version = "0.5.7", default-features = false } |
| 29 | |||
| 30 | [package.metadata.embassy_docs] | ||
| 31 | src_base = "https://github.com/embassy-rs/embassy/blob/cyw43-v$VERSION/cyw43/src/" | ||
| 32 | src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/cyw43/src/" | ||
| 33 | target = "thumbv6m-none-eabi" | ||
| 34 | features = ["defmt", "firmware-logs"] \ No newline at end of file | ||
diff --git a/embassy-net-w5500/Cargo.toml b/embassy-net-w5500/Cargo.toml index 3f19e3d39..37d15c7ac 100644 --- a/embassy-net-w5500/Cargo.toml +++ b/embassy-net-w5500/Cargo.toml | |||
| @@ -14,3 +14,8 @@ embassy-net-driver-channel = { version = "0.1.0", path = "../embassy-net-driver- | |||
| 14 | embassy-time = { version = "0.1.0" } | 14 | embassy-time = { version = "0.1.0" } |
| 15 | embassy-futures = { version = "0.1.0" } | 15 | embassy-futures = { version = "0.1.0" } |
| 16 | defmt = { version = "0.3", optional = true } | 16 | defmt = { version = "0.3", optional = true } |
| 17 | |||
| 18 | [package.metadata.embassy_docs] | ||
| 19 | src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-w5500-v$VERSION/embassy-net-w5500/src/" | ||
| 20 | src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net-w5500/src/" | ||
| 21 | target = "thumbv7em-none-eabi" \ No newline at end of file | ||
