strongback / strongback-java

A library for FIRST Robotics Competition robots that makes it easier to write and test your robot code.
MIT License
41 stars 38 forks source link

Log Decoder #13

Closed Zabot closed 9 years ago

Zabot commented 9 years ago

Here is the log decoder from frc-4931/2015-Robot. I added some documentation and command line arguments. Usage: LogDecoder <input_path> [output_path] If output_path is not specified, the log will be saved in the current directory.

Closes #7

Zabot commented 9 years ago

Cleaned some stuff up. afdc300 tweaks the file type of the output file. I made the logic clearer, but we don't want to modify the output path if it is specified in the arguments, so it doesn't check the file type if the path is explicitly specified.

rhauch commented 9 years ago

Looks good.