Pac cannot be brought into scope when compiling with the stm32f769 feature
seanybaggins opened this issue · 2 comments
seanybaggins commented
Steps to Reproduce
- Clone the following project
git clone git@github.com:seanybaggins/blinky-769.git
- Checkout the commit containing the bug
git checkout a8a02896871f19aaa9de09256ce517179ec934ac
-
Follow the instructions within the
readme.md
for opening the environment within a docker container using VSCode. -
Use Cargo check to get the compiler error
cargo check \
--target thumbv7em-none-eabihf \
--features stm32f769
ost-ing commented
Yeah I'm also experiencing this problem.
I had to override Cargo and specify the repository directly:
[dependencies.stm32f7xx-hal]
features = ["stm32f746"]
git = "https://github.com/stm32-rs/stm32f7xx-hal"