FAQ add hint to embassy-time linker error to include HAL in linking
This commit is contained in:
parent
b7c1ad553f
commit
f9af0096bd
1 changed files with 7 additions and 0 deletions
|
@ -118,6 +118,13 @@ features = [
|
|||
]
|
||||
----
|
||||
|
||||
If you are in the early project setup phase and not using anything from the HAL, make sure the HAL is passed to the linker by adding this line to your source:
|
||||
|
||||
[source,rust]
|
||||
----
|
||||
use embassy_stm32 as _;
|
||||
----
|
||||
|
||||
== Error: `Only one package in the dependency graph may specify the same links value.`
|
||||
|
||||
You have multiple versions of the same crate in your dependency tree. This means that some of your
|
||||
|
|
Loading…
Reference in a new issue