defmt
defmt copied to clipboard
Efficient, deferred formatting for logging on embedded systems
[sometimes](https://twitter.com/pandora9001/status/1565774226417655809) it's preferable to use an existing logger instead of a bespoke defmt-aware one. This PR makes it possible to preserve log levels in this case. It breaks a public...
It is currently not possible to do `defmt-print -e foo.wasm` because the decoder expect an ELF and fails with `Unknown file magic`. It looks like under the hood `defmt-decoder` uses...
Hey @Urhengulas after the latest release of the changes in https://github.com/knurling-rs/defmt/pull/747 I am still having problems aligning versions in my setup :sweat: It appears to me that we missed bumping...
I'm not sure if it's feasible or if it even makes sense, but I was wondering if it is (or will be) possible to build core (and alloc) with defmt...
So I've been using defmt in a couple of libraries of mine and it's super nice! However, when I want to add tests to the library that I run on...
Would this be possible somehow? I have some ``env!()`` that could be ``intern!()`` tbh. I dont have much macro knowledge :/
I'm currently working on a platform which isn't supported by probe-rs yet. I'm also working on that, but as of right now my only way to debug the target is...
Imaging a condition that these is two micro controller which are master and slave and slave loges send to master and the master send it over a protocol. In this...
this ensures that the dependencies are kept up to date. see [the docs][] for further information. note: changelog intentionally left away as this only touches the build infrastructure and has...
Do we have an example of using RTIC to handle the mutual-exclusion required for the defmt-rtt transport stream, instead of using critical section? I have a device with an SPI...