Skip to content

Instantly share code, notes, and snippets.

View vinicius-campelo's full-sized avatar
:octocat:
I may be slow to respond.

Vinicius Campelo vinicius-campelo

:octocat:
I may be slow to respond.
View GitHub Profile
@vinicius-campelo
vinicius-campelo / SmartPort.pas
Created April 29, 2021 19:47 — forked from stijnsanders/SmartPort.pas
SmartPort: bare-bones wrapper for a serial connection (with some USB support)
unit SmartPort;
interface
uses Windows, SysUtils, Classes;
{$D-}
type
TSmartPortParity=(ppParityEven,ppParityMark,ppParityNone,ppParityOdd,ppParitySpace);