Tag: Serial

  • Send Data to the Serial Port

    As a counterpart to the LogSer program, I’m releasing code that allows dumping data from stdin to an arbitrary serial port. The code can be downloaded as either source code or a compiled EXE from the ToSer release page under the Software section. To compile the source for yourself, simply run cl ToSer.cpp to compile […]

  • Updated Serial Logger (LogSer)

    As a followup to the initial LogSer post, I’m releasing this version. It supports selecting the baud rate (via -b <rate>) and the parity (-p <string>, where string is something like 8n1, 7e2, etc). Compilation remains the same as the original: Downloaded as either source code or a compiled EXE from the LogSer release page […]

  • Serial Port Data Logging

    I recently needed an application to save data from a serial port to a text file. Although most terminal emulators like ProComm can handle this, it’s quite a lot of overhead for such a simple task. I came up with the following solution, which works for Windows only (b/c 90% of the interesting code is […]