
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1329 8e941d3f-bd1b-0410-a28a-d453659cc2b4
28 lines
539 B
ObjectPascal
28 lines
539 B
ObjectPascal
{
|
|
Serial File Transfer example with Lazarus
|
|
|
|
This project requires Synaser, which can be downloaded via svn with:
|
|
|
|
https://synalist.svn.sourceforge.net/svnroot/synalist/trunk/
|
|
}
|
|
program serialfilesend;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
uses
|
|
{$IFDEF UNIX}{$IFDEF UseCThreads}
|
|
cthreads,
|
|
{$ENDIF}{$ENDIF}
|
|
Interfaces, // this includes the LCL widgetset
|
|
Forms, laz_synapse, mainform
|
|
{ you can add units after this };
|
|
|
|
{$R *.res}
|
|
|
|
begin
|
|
Application.Initialize;
|
|
Application.CreateForm(TformSerial, formSerial);
|
|
Application.Run;
|
|
end.
|
|
|