Eric Trombly

Results 15 comments of Eric Trombly

Just gave it a try, looks like it's still not working due to the issue here https://stackoverflow.com/questions/36287351/how-to-setup-lldb-with-openocd-and-jtag-board Here's a thread with some info on how to fix it. http://comments.gmane.org/gmane.comp.debugging.lldb.devel/3405 Looks...

I had the same issue, had to set the ServerIP environment variable.

Having a similar issue with an STM32F103. The MODE register of a GPIO configures it for input or output, the CNF register handles the configuration (open-drain, push-pull, etc) but the...

You don't have an example of the high level parser yet, looking at the test code it looks like you are passing the results of the low level parser through...

Great, got a quick version working this way: ```rust let lexer = Tokenizer::new(GCODE.chars()); let tokens = lexer.filter_map(|t| t.ok()); let parser = BasicParser::new(tokens); for line in parser { if let Line::Cmd(x)...

It was actually pretty easy to use once I figured it out. Just had to dig around your tests to find examples. I think having an example like what I...

Just started working on this again since japaric updated RTFM. One way to handle rightward drift is: const G0: (CommandKind, Number) = (CommandKind::G, Number::Integer(0)); match (cmd.kind, cmd.number) => { G0...

Oh and I used it with an stm32f103 (blue pill) so you can add stm32 to your list of devices where your driver was tested.

I was testing it here https://github.com/etrombly/screen-test Also I grabbed the display specific stuff from the arduino driver here https://github.com/wemos/LOLIN_EPD_Library/blob/master/src/LOLIN_IL3897.cpp, It looks like if you use a different LUT to initialize...

You should be able to use the code I mentioned here https://github.com/etrombly/screen-test , an example on how to use it is here https://github.com/etrombly/screen-client . I haven't updated either in the...