Results 451 comments of Rahix

Hi, yes, this is very true. As you saw, a while ago I added the `tbot.error` module with the intention to fix this mess and to have proper error types...

@avylove, if you have time, I started working on this in #79. I don't want to do everything at once now because we're committing to a huge part of the...

Hi, I've heard of this problem from others as well. The issue is that apparently MacOs and Windows can't do sample-rate conversion automatically so the sample-rate we use must be...

> ``` > Message: called `Result::unwrap()` on an `Err` value: CompilationError("ERROR: 0:7: Use of undeclared identifier 'gl_FragColor'\n", Fragment) > ``` Right, this is an OpenGL error... I'm not sure, it...

Indeed, your approach might be the best solution for the time being. Hm, does it work if you use `=` version requirements, maybe? ```toml [dependencies] embedded-hal-alpha = { package =...

Uff, that's weird. To all my knowledge, they shouldn't interfere when specified this way. I'll try to investigate this as well, I will let you know if I find something...

Hm, it feels like this is a bug in cargo. With just the following lines in an empty project, it is failing: ```toml [dependencies] embedded-hal = "=0.2.3" ver2 = {...

Just for the record, this was discussed in the embedded rust working group meeting today: https://github.com/rust-embedded/wg/pull/640 The consensus was mostly that the alpha versions shouldn't be considered semver-compatible by cargo...

It looks like this line is not correct: https://github.com/Rahix/shared-bus/blob/283dcadb6c292ffd7c84b6a95466915889a9cb9e/src/macros.rs#L154 It should be ```rust let m: Option

I think it must be an unrelated issue. I'm not familiar with the platform so I don't have any ideas here, unfortunately. Do you also get a watchdog reset when...