Alex Martens

Results 215 comments of Alex Martens

> Use case can be that there is a `no_std` lib that is primarily meant for embedded devices and it has bunch of `defmt` prints in there and you wanna...

This is a problem for packaging maintainers. `svd2rust` is not reproducible without `Cargo.lock`. Reproducible builds are required to package `svd2rust` on some distros. For example, NixOS maintains an out-of-tree `Cargo.lock`...

> I'm still playing with it a bit but wondered if it was something to open an issue with on probe-rs once I've figured out something that could potentially be...

As a first proof of concept it should be possible to dump data from the probe using an [rtt_target](https://docs.rs/rtt-target/0.3.1/rtt_target/) channel. RTT is just a chunk of RAM on the embedded...

If you're looking for something new the STM32H7 is a well supported microcontroller with megabytes of flash. ST sells it on a nucleo dev board. I'll give that a go...

> requiring `From` would be a neat solve, though, there are some [drawbacks](https://github.com/fluentech/embedded-time#duration) to `core::time::Duration` for embedded use. we could perhaps look to using `embedded_time::Duration` for this bound? `embedded-time` is...

I cloned the repo to debug further, but the unit tests seem to be failing out-of-the-gate for me: test_sphinx_output[False] ``` _________________________________________________________________________________________________________________ test_sphinx_output[False] __________________________________________________________________________________________________________________ tests/test_sphinx_autodoc_typehints.py:505: in test_sphinx_output assert text_contents == expected_contents...

Looks like this is a breaking change introduced by [bpo-34776](https://bugs.python.org/issue34776). The issue tracker mentions it was merged into 3.7 and 3.8, but I do not see mention of it in...

I am trying to better understand the changes made in bpo-34776, but reading the dataclasses source is leading to a lot of questions; does anyone know why a string of...

> What will the difference be in my rendered docs between those docs when I am using a Python version which hits this bug and a Python version which does...