Andres Vahter

Results 20 issues of Andres Vahter

Very nice library! It would be awesome to see [TLE](http://www.celestrak.com/NORAD/elements/cubesat.txt) support in this library so it can be used for tracking satellites. Currently [rust-gpredict](https://github.com/cubehub/rust-gpredict/blob/master/examples/predict.rs) can be used for that, however...

`split_read()` was recently added, so example for `bufs()` is probably copy-pasted from other method and therefore incorrect. https://github.com/jamesmunns/bbqueue/blob/479eb3d5884c9a7459f630b333ad6f21efb3cec0/core/src/bbbuffer.rs#L1078-L1109

Currently I am using this snippet to setup fern: ``` Rust fn setup_logger() { let logger_config = fern::DispatchConfig { format: Box::new(|msg: &str, level: &log::LogLevel, _location: &log::LogLocation| { let t =...

enhancement

It took me some time to figure out that it is possible to call `monotonics::now()` and it returns an `Instant`. Maybe there should be a paragraph about this and how...

documentation

1. start `roscore` 2. start your rosrust node `cargo run`. 3. run `rosnode list` and verify that node is in there 4. stop your node 5. run `rosnode list` this...

ADC config on STM32 is quite involved, it would be good if there is a quick example about that.

``` ./doppler const Invalid arguments. Usage: doppler (const (--samplerate | -s ) --intype --shift ) doppler (track (--samplerate | -s ) --intype --tlefile --tlename --location --freq ) [--time ] [--shift...

enhancement

@marcelbuesing I tried multiplexed signal parsing on one of the opendbc files and got some errors. Offending message: https://github.com/commaai/opendbc/blob/master/hyundai_kia_generic.dbc#L1061-L1080 There seems to be problem with floats: ``` 40322 | pub...

At the moment it just says `Could not parse dbc file` and prints a lot of numbers in debug mode. No idea what is actually wrong with the file. It...