Brad Campbell
Brad Campbell
> Won't this prevent us from ever adding forbid(unsafe) to chip crates? Components, when done well, don't use unsafe. Another goal we have is forbid unsafe in the board components...
Ok this is updated and passes CI now
# Porting Instructions ## In main.rs Add these imports: ``` use kernel::debug::PanicResources; use kernel::utilities::single_thread_value::SingleThreadValue; ``` Replace `static mut`s for process, chip, and panic printer in main.rs with this: ``` ///...
You might just need to try. pipx should work, uv should work.
You need the `--probers` argument.
Ok, right. Probably need something like ``` tockloader flash --probers --probers-board LPC55S69JBD100 --board lpc55s69evk --arch cortex-m4 .\target\thumbv8m.main-none-eabi\debug\lpc55s69-evk --debug ```
Ok interesting, there is a bug in tockloader. It is not passing `--chip` to the probe-rs command. I have a fix, but to try to double check that is the...
Can you run both transmit and receive test apps?
When I try to run this board I get a panic. I'm a little unsure how to proceed with this PR. At this moment, my recommendation is to close this...
I think that probe-rs support is not very good. I updated to the latest probe-rs today (which is version 0.30.0) and that seems to be working better. The send_byte for...