v0.5.0 - Data Logging
This version adds the ability to log serial data to a file (in addition to being displayed on-screen as usual). There are two new command line arguments that can be used to control the new logging functionality:
-log:LOGFILE
where LOGFILE
is the name and path of the file you want to write to. If the file path contains spaces, it must be enclosed in quotation marks, i.e. -log:"C:\Path With Spaces\serial.log"
.
-logmode:MODE
where MODE
is OVERWRITE
or APPEND
. If no logmode is specified, SimplySerial will use OVERWRITE
mode by default.
Thanks to Github user @unwiredben for suggesting this feature and helping to test the implementation!