perlindgren

Results 79 comments of perlindgren

We close this for now, pleas re-open if fugit would not work for you.

You may look at: https://docs.rs/rtic-sync/latest/rtic_sync/arbiter/i2c/index.html

Thanks for the clarification (and all your hard work). I found it confusing: - with a version number 0.7 as it contains breaking changes. E.g. the "inline-asm" feature has been...

If you use the released `cortex-m` (version 0.7.6) https://github.com/rust-embedded/cortex-m/blob/v0.7.x/Cargo.toml, you should add the features "inline-asm". On the master branch, version (0.7.4) https://github.com/rust-embedded/cortex-m/blob/master/Cargo.toml, you no longer need the features "inline-asm", (at...

Can you make a reproducible example and we can double check.

Small comment, RTIC typically should require no unsafe user code. For the Cortex and ESP32 targets setting up the interrups are done by the framework. This also ensures that the...

sudo lsof -i | grep 50001 JLinkGDBS 72740 pln 3u IPv4 705474 0t0 TCP *:50001 (LISTEN) So it seems that jlink uses a tcp connection. Well still using gives me...

I finally got it working. The problem was my misunderstanding on the `port` abstraction. Here is a working solution for tracing ITM from the terminal using JLinkGDBServer. The tool `itmdump`...

Hi Haneefdm Thanks for the input: > * Cortex-Debug has a bunch of gdb utility functions it creates and uses to enable SWO/ITM. They can be found [here](https://github.com/Marus/cortex-debug/blob/3e3e2cf92408a91e56f06054f5c3e211211b17ed/support/gdbsupport.init#L2) Great info....

...hmmm, now I see why I was confused regarding the versioning of Cortex Debug. - The Changelog.md indeed has all the release info up to 0.3.4 - The Releases (in...