<JamesMunns[m]>
you can do fun things for the cost of a small macro tho
<thejpster[m]>
The author clearly wanted the [u8] in RAM to avoid XIP cache contention and messed up latency
<thejpster[m]>
whitequark[cis]: I misunderstood you here
<whitequark[cis]>
whitequark[cis]: yeah, figured
<whitequark[cis]>
you could have a #[link_section = ".data"] static DATA: [u8; N] = [...] like in James' example
<thejpster[m]>
That is what was intended in the code example
<thejpster[m]>
And confusion arose when core 0 activity affected video rendering on core 1.
<thejpster[m]>
I wonder if clippy should lint for it
<thejpster[m]>
As an aside, I call &[T] a slice when teaching but often later have to explain that [T] is actually the slice and &[T] is really a shared reference to a slice that knows the length of what it references.
i509vcb[m] has quit [Quit: Idle timeout reached: 172800s]
<Lumpio[m]>
Not that it matters a lot but elf2uf2-rs is not liking it - i patched out the check and the binary seems fine but what has changed exactly here
<Lumpio[m]>
Has the ABI field changed for any of you people..?
KevinPFleming[m] has joined #rust-embedded
<KevinPFleming[m]>
Yes, this has been discussed in this channel quite a few times in the past week or two, always in the context of elf2uf2-rs, and the recommendation is to use picotool instead.
<Lumpio[m]>
Oh, well, serves me right for not searching!