* Include ROM API symbols * Fixes and CHANGELOG.md * Fix * Move migration steps to the right crate's migration guide * Remove `-Trom_functions.x` where necessary
13 lines
242 B
Markdown
13 lines
242 B
Markdown
# Migration Guide from 0.10.x to v0.11.x
|
|
|
|
## No need to include `rom_functions.x` manually
|
|
|
|
Don't include `rom_functions.x` from esp-wifi
|
|
|
|
```diff
|
|
rustflags = [
|
|
"-C", "link-arg=-Tlinkall.x",
|
|
- "-C", "link-arg=-Trom_functions.x",
|
|
]
|
|
```
|