We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HeapRegion
This code to create heap regions could be made much nicer. Ideally user should be able to write this with only 5 lines of code and an unsafe block.
esp-hal/examples/src/bin/wifi_coex.rs
Lines 62 to 80 in 2ff28b1
I'm thinking something along the lines of esp_alloc::HeapRegion::from_internal(HEAP2).
esp_alloc::HeapRegion::from_internal(HEAP2)
The text was updated successfully, but these errors were encountered:
I think think forwarding attributes to the underlying memory region that the macro defines is the most flexible way to solve this.
Sorry, something went wrong.
No branches or pull requests
This code to create heap regions could be made much nicer. Ideally user should be able to write this with only 5 lines of code and an unsafe block.
esp-hal/examples/src/bin/wifi_coex.rs
Lines 62 to 80 in 2ff28b1
I'm thinking something along the lines of
esp_alloc::HeapRegion::from_internal(HEAP2)
.The text was updated successfully, but these errors were encountered: