Skip to content

Commit

Permalink
initial upload to github
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-rozee committed Aug 26, 2016
0 parents commit a0d443d
Show file tree
Hide file tree
Showing 14 changed files with 1,461 additions and 0 deletions.
Binary file added HC-12 config.exe
Binary file not shown.
35 changes: 35 additions & 0 deletions Project1.cfg
@@ -0,0 +1,35 @@
-$A+
-$B-
-$C+
-$D+
-$E-
-$F-
-$G+
-$H+
-$I+
-$J+
-$K-
-$L+
-$M-
-$N+
-$O+
-$P+
-$Q-
-$R-
-$S-
-$T-
-$U-
-$V+
-$W-
-$X+
-$YD
-$Z1
-cg
-AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;
-H+
-W+
-M
-$M16384,1048576
-K$00400000
-LE"c:\program files\borland\delphi5\Projects\Bpl"
-LN"c:\program files\borland\delphi5\Projects\Bpl"
87 changes: 87 additions & 0 deletions Project1.dof
@@ -0,0 +1,87 @@
[Compiler]
A=1
B=0
C=1
D=1
E=0
F=0
G=1
H=1
I=1
J=1
K=0
L=1
M=0
N=1
O=1
P=1
Q=0
R=0
S=0
T=0
U=0
V=1
W=0
X=1
Y=1
Z=1
ShowHints=1
ShowWarnings=1
UnitAliases=WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;
[Linker]
MapFile=0
OutputObjs=0
ConsoleApp=1
DebugInfo=0
RemoteSymbols=0
MinStackSize=16384
MaxStackSize=1048576
ImageBase=4194304
ExeDescription=
[Directories]
OutputDir=
UnitOutputDir=
PackageDLLOutputDir=
PackageDCPOutputDir=
SearchPath=
Packages=Vcl50;Vclx50;VclSmp50;Qrpt50;Vcldb50;Vclbde50;ibevnt50;TeeUI50;TeeDB50;Tee50;vcldbx50;TeeQR50;VCLIB50;vclie50;Inetdb50;Inet50;NMFast50;dclocx50;dclaxserver50;CPortLib5
Conditionals=
DebugSourceDirs=
UsePackages=0
[Parameters]
RunParams=
HostApplication=
[Language]
ActiveLang=
ProjectLang=$00001409
RootDir=
[Version Info]
IncludeVerInfo=1
AutoIncBuild=1
MajorVer=1
MinorVer=0
Release=3
Build=127
Debug=0
PreRelease=0
Special=0
Private=0
DLL=0
Locale=5129
CodePage=1252
[Version Info Keys]
CompanyName=
FileDescription=HC-12 configuration utility
FileVersion=1.0.3.127
InternalName=
LegalCopyright=(c) Robert Rozee 2016
LegalTrademarks=
OriginalFilename=
ProductName=
ProductVersion=1.0.0.0
Comments=(c) Robert Rozee 2016
[Excluded Packages]
$(DELPHI)\Projects\Bpl\dclusr50.bpl=Borland User Components
[HistoryLists\hlUnitAliases]
Count=1
Item0=WinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;
15 changes: 15 additions & 0 deletions Project1.dpr
@@ -0,0 +1,15 @@
program Project1;

uses
Forms,
Unit1 in 'Unit1.pas' {Form1},
Unit2 in 'Unit2.pas' {Form2};

{$R *.RES}

begin
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TForm2, Form2);
Application.Run;
end.
Binary file added Project1.res
Binary file not shown.
Binary file added Shared.dcu
Binary file not shown.
16 changes: 16 additions & 0 deletions Shared.pas
@@ -0,0 +1,16 @@
unit Shared;

interface

var
{variables here}
CommPortName:string;
InitFlag:boolean;

implementation
{ nothing here?}

begin
CommPortName:='';
InitFlag:=false
end.
Binary file added Unit1.dcu
Binary file not shown.

0 comments on commit a0d443d

Please sign in to comment.