-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathfrmMain.cs
39 lines (28 loc) · 806 Bytes
/
frmMain.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using System;
using System.Windows.Forms;
using System.Threading;
namespace wintelive
{
public partial class frmMain : Form
{
frmFreq ff = new frmFreq();
short verbosity = 0;
public frmMain()
{
InitializeComponent();
}
private void frmMain_Load(object sender, EventArgs e)
{
}
private void btnInitGNR_Click(object sender, EventArgs e)
{
settings.allScanLow = double.Parse(txtRangeLow.Text);
settings.allScanHigh = double.Parse(txtRangeHigh.Text);
gnuradio.init(txtHost.Text, ushort.Parse(txtPort.Text));
telive.startAll();
grpGnuradio.Enabled = false;
telive.ffInit(this);
telive.fsInit();
}
}
}