Florian Jung
Florian Jung
Hi, thanks for the nice feedback :) The issue is likely that the panic handler itself tries to allocate memory (which is still blocked and thus will panic again). You...
ahh, seems like this could be the key: https://doc.rust-lang.org/stable/std/alloc/fn.handle_alloc_error.html "The default behavior of this function is to print a message to standard error and abort the process. It can be...
- [x] preliminary support - [ ] exponential envelopes - [ ] real VCOs (sine, saw, tri, ...)
- [x] build a schematic in `simulation/` - [x] allow changing the distortion without changing the overall volume - [ ] replace single-transistor expo converters by double-transistor ones that are...
Thank you for the hint!
to do: - [x] is the buzz still there without the actual transistor ladder connected? (i.e. only U1D with R36,37 dangling). (try this on the breadboard) -> *no; the transistor...
Disconnect at C2: -> buzz is visible on the oscilloscope at R21/R22. -> buzz is also visible across C3 and C6 -> buzz is also visible at output Disconnect R36,37...
Hi @mvirkkunen, Another option might be to make the buffer size a generic argument using the [typenum](https://docs.rs/typenum/1.13.0/typenum/) crate. This would still waste memory, though, when not used. I made a...
I don't think that passing a `&'static mut [u8]` is a good idea if we can just have "const generics" (which aren't really a thing yet, but can be emulated...
Hi @vitalyvb, do you think that your proposed change would make it possible to support "long" descriptors for other drivers without having to modify them? Or would we still need...