Alexey Galakhov
Alexey Galakhov
Hi, since the version 2.2.2 the following code: `error!(logger, "at {name:?}: {sym:#}", name = frame.ip(), sym = demangle(name)));` stopped working with an error "slog::Value is not satisfied", while `error!(logger, "at...
Hi, I recently found out that the code generated by `svd2rust` (the one of `stm32f1` crate) is very slow if compiled for STM32F103 as --release (about five times slower than...
In most recent Git (devel) versions holding Ctrl to select multiple surfaces (i.e. for Unify) either is not reliable or does not work at all. Steps to reproduce: - Open...
This makes `FromColumnData` trait accessible to the caller so that wrappers around `get()` and `try_get()` can be written. Signed-off-by: Alexey Galakhov
`StmtStream` was not `Send` due to pointer in `PhantomData`. This pointer makes no sense since `PhantomData` is already zero-sized. This is likely to fix #103. Signed-off-by: Alexey Galakhov
Hi, there is a FIFO at SPI. Instead of checking if the FIFO is full (FTLVL), the sending engine is checking if the FIFO is empty (TXE). This seems to...