Skip to content
Merged
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
- stm32g070
- stm32g071
- stm32g081
- stm32g0b1
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
- stm32g070
- stm32g071
- stm32g081
- stm32g0b1
steps:
- uses: actions/checkout@v1
- run: rustup component add clippy
Expand Down
15 changes: 15 additions & 0 deletions .zed/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"lsp": {
"rust-analyzer": {
"initialization_options": {
"cargo": {
"features": ["stm32g071", "rt"]
},
"check": {
"allTargets": false,
"targets": "thumbv6m-none-eabi"
}
}
}
}
}
6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ embedded-hal = "1.0.0"
bare-metal = "1.0.0"

[dependencies.stm32g0]
version = "0.15.1"
features = ["rt"]
package = "stm32g0-staging"
version = "0.16.0"

[dependencies.void]
default-features = false
Expand All @@ -48,6 +48,8 @@ stm32g031 = ["stm32g0/stm32g031", "stm32g0x1", "device-selected"]
stm32g041 = ["stm32g0/stm32g041", "stm32g0x1", "device-selected"]
stm32g071 = ["stm32g0/stm32g071", "stm32g0x1", "device-selected"]
stm32g081 = ["stm32g0/stm32g081", "stm32g0x1", "device-selected"]
stm32g0b1 = ["stm32g0/stm32g0b1", "stm32g0x1", "device-selected"]
stm32g0c1 = ["stm32g0/stm32g0c1", "stm32g0x1", "device-selected"]

stm32g0x0 = []
stm32g0x1 = []
Expand Down
200 changes: 0 additions & 200 deletions examples/adc_ext_trig_double_dma_serial.rs

This file was deleted.

89 changes: 0 additions & 89 deletions examples/uart_dma.rs

This file was deleted.

Loading
Loading