Skip to content

Commit

Permalink
INFRA - Add STM32F767ZI board support (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbeechey authored and SinY-Over-CosY committed Nov 6, 2024
1 parent 0db24f5 commit cb41fd4
Show file tree
Hide file tree
Showing 20 changed files with 1,132 additions and 22 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ jobs:
- run: rustup target add thumbv7em-none-eabihf
- run: cargo build --verbose
working-directory: boards/stm32l476rg
- run: cargo build --verbose
working-directory: boards/stm32f767zi
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,6 @@ members = [
]
exclude = [
"boards/stm32l476rg",
"boards/stm32f767zi",
]
resolver = "2"
9 changes: 9 additions & 0 deletions boards/stm32f767zi/.cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[target.'cfg(all(target_arch = "arm", target_os = "none"))']
# replace STM32F429ZITx with your chip as listed in `probe-rs chip list`
runner = "probe-rs run --chip STM32F767ZITx"

[build]
target = "thumbv7em-none-eabihf"

[env]
DEFMT_LOG = "debug,smoltcp=info"
Loading

0 comments on commit cb41fd4

Please sign in to comment.