Maja Piechotka
Maja Piechotka
I run into trouble using combine when writing a parser which used internal state to parse next element and accumulate them together. There are several ways to achieve it but...
I'm trying to implement a generic parser: ``` BinExpr := SubExpr (Op SubExpr)* ``` However I run into number of issues: - I cannot reuse subexpr directly as parsers are...
Would it be possible to add support to freeze the container - creating a read only copy which can be queried outside monad.
When the mapping fails (in my case it was because I didn't have linear module installed) the blocks hits an assert. It means that the return codes are probably not...
Currently HAL exposes 2 out of 3 interrupts (at least looking at ATMega datasheets). It would be nice if TxComplete was exposed as well.
Sometimes hint is incorrect and I'd like to have an option to silence it in UI - this would allow users who don't know what backend sublimehaskell is using or...
I'm noticing that 99% of my errors are type errors during calling `cpp!` macro: // Handle struct Wrap { ptr: ::libc::c_void } pub fn test(wrap: &mut Wrap) { cpp!([wrap as...
Currently Mutex implementation in cortex-m returns a normal references instead of mutable one. FWIW bare_metal (used by rtic for example) returns mutable reference and is more full-featured (it may be...
``` error[E0557]: feature has been removed --> /home/mpiechotka/.cargo/registry/src/github.com-1ecc6299db9ec823/drone-core-0.14.3/src/lib.rs:27:12 | 27 | #![feature(const_fn)] | ^^^^^^^^ feature has been removed | = note: split into finer-grained feature gates For more information about...
Currently extending the drone requires changing CLI code. This adds a layer of complexity if I just want to play around with a new board. Can you add an option...