aboutsummaryrefslogtreecommitdiffstats
path: root/PCB/Libraries/USBRegulator/UL_Form.pas
diff options
context:
space:
mode:
authorMatt Strapp <strap012@umn.edu>2021-03-28 10:12:10 -0500
committerMatt Strapp <strap012@umn.edu>2021-03-28 10:12:10 -0500
commitf3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb (patch)
treedd3ab9128eee3ca38e86f83d705526d596c0f732 /PCB/Libraries/USBRegulator/UL_Form.pas
parentAdded intial PIC24 Firmware (diff)
downloadee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar
ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar.gz
ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar.bz2
ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar.lz
ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar.xz
ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.tar.zst
ee3102-f3f8cbd69e290ccbd60f9cbc0b1d9b63645127bb.zip
Add a basic VtoI function
Also rearrange things and commit iconoclasm
Diffstat (limited to 'PCB/Libraries/USBRegulator/UL_Form.pas')
-rw-r--r--PCB/Libraries/USBRegulator/UL_Form.pas14
1 files changed, 14 insertions, 0 deletions
diff --git a/PCB/Libraries/USBRegulator/UL_Form.pas b/PCB/Libraries/USBRegulator/UL_Form.pas
new file mode 100644
index 0000000..a79f13c
--- /dev/null
+++ b/PCB/Libraries/USBRegulator/UL_Form.pas
@@ -0,0 +1,14 @@
+
+procedure TUL_Form.BtnFileClick(Sender: TObject);
+begin
+ If OpenDlg.Execute Then Begin
+ TxtFile.Text := OpenDlg.FileName;
+ End;
+end;
+
+procedure TUL_Form.BtnImportClick(Sender: TObject);
+begin
+ ImportAscIIData(TxtFile.Text);
+ Close;
+end;
+