Daniel Egger

Results 405 comments of Daniel Egger

Yes, I was thinking about that. I was also looking into integrating with `rustfmt` directly since the generated code is such a hot mess; quite obviously the code generation/parsing cabilities...

That is very odd. Can you provide some assembly for comparison?

Looks great! Can we get a little more details on what an `Instance` is supposed to constitute? Is this a HAL impl wide common trait? Or is it a trait...

> * Peripherals that don't have multiple instances like that don't need an `Instance` trait. But if the intent is to make additional information (like the associated `Interrupt`) accessible, wouldn't...

> Convert some (or even most) demos to doc examples, especially ones that are specific to a single peripheral I haven't really seen any convincing embedded doc examples yet. They...

I thought most of the PANs need to be applied during peripheral initialisation? I certainly wouldn't object to applying any fixups and workaround during peripheral initialisation.

Hm, I have no idea how to inject such code without interfering with potential custom initialisation. Also I'm not too happy about the fact that these runtime checks would blow...

Huh? Where does that quoted comment come from? 😅

I'll modify the example to use less payload on nrf51 when I find time (or someone beats me to it 😉 ).

Shouldn't the intrinsic types from `math` be exposed for the modeling as well? At the moment a lot of functions are taking raw `f64` or `Vec` which is problematic for...