Linus Leo Stöckli
Linus Leo Stöckli
this sounds great, keep me updated!
Indeed a very good idea, this should be implemented! We could have a drop down to select pre-defined gains/scaling factors (..., 0.1, 1, 10, ...) next to the field where...
Yes, we would definitely require both a scale and offset. `Autoscale` could also be a possibility and could be easy to implement (not sure though). I think both need to...
Hi, first of all: thanks a lot for the contribution to this project! Using the serial monitor like this is probably attractive only for a small amount of people but...
This is indeed a great idea. Due to the implementation of the raw text ([egui scroll area](https://docs.rs/egui/latest/egui/containers/scroll_area/struct.ScrollArea.html)) this is not straight forward. I don't have a clear idea in mind...
`read16` returns an unsigned 16 bit integer. However in the datasheet it says: > If the RAM is read, the data are divided by two, due to a sign bit...
Doesn't the `read16` just return the unsigned two's complement instead of the sign and magnitude format? `return uint16_t(buffer[0]) | (uint16_t(buffer[1])
@MikMikus please bump to 0.31, thanks!
Hi, thanks for the input! Do you mean as an optional row after each line?
Working on this in [the implement_crc branch](https://github.com/hacknus/serial-monitor-rust/tree/implement_crc)