aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/relocate.rs
Commit message (Collapse)AuthorAgeFilesLines
* Update Rust nightly, stable.Dario Nieuwenhuis2025-07-041-1/+1
|
* Merge branch 'embassy-rs:main' into barafael/minor_clippy_lints_rpRafael Bachmann2024-03-251-2/+0
|\
| * Fix warnings in recent nightly.Dario Nieuwenhuis2024-03-201-2/+0
| |
* | fix minor clippy lints in embassy_rpRafael Bachmann2024-03-181-3/+3
|/
* rp: relocate programs implicitly during loadpennae2023-07-281-5/+0
| | | | | | | | | | | this removed the RelocatedProgram construction step from pio uses. there's not all that much to be said for the extra step because the origin can be set on the input program itself, and the remaining information exposed by RelocatedProgram can be exposed from LoadedProgram instead (even though it's already available on the pio_asm programs, albeit perhaps less convenient). we do lose access to the relocated instruction iterator, but we also cannot think of anything this iterator would actually be useful for outside of program loading.
* rp/pio: allow wrap-around program loadingpennae2023-05-061-7/+3
| | | | | | execution wraps around after the end of instruction memory and wrapping works with this, so we may as well allow program loading across this boundary. could be useful for reusing chunks of instruction memory.
* Added RelocateProgram class for adjusting PIO-programs for different origins.Simon Berg2022-12-091-0/+77