├── .gitattributes ├── .gitignore ├── Program.cs ├── Properties ├── DataSources │ ├── telive.receiver.datasource │ ├── telive.tfreq.datasource │ └── telive.usi.datasource ├── Resources.Designer.cs └── Resources.resx ├── README.md ├── app.config ├── frmFreq.Designer.cs ├── frmFreq.cs ├── frmFreq.resx ├── frmMain.Designer.cs ├── frmMain.cs ├── frmMain.resx ├── frmMode.Designer.cs ├── frmMode.cs ├── frmMode.resx ├── frmSDS.Designer.cs ├── frmSDS.cs ├── frmSDS.resx ├── frmTune.Designer.cs ├── frmTune.cs ├── frmTune.resx ├── packages.config ├── wintelive.csproj └── wtl-structures.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/.gitignore -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/DataSources/telive.receiver.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/Properties/DataSources/telive.receiver.datasource -------------------------------------------------------------------------------- /Properties/DataSources/telive.tfreq.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/Properties/DataSources/telive.tfreq.datasource -------------------------------------------------------------------------------- /Properties/DataSources/telive.usi.datasource: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/Properties/DataSources/telive.usi.datasource -------------------------------------------------------------------------------- /Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/Properties/Resources.resx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/README.md -------------------------------------------------------------------------------- /app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/app.config -------------------------------------------------------------------------------- /frmFreq.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/frmFreq.Designer.cs -------------------------------------------------------------------------------- /frmFreq.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/frmFreq.cs -------------------------------------------------------------------------------- /frmFreq.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/frmFreq.resx -------------------------------------------------------------------------------- /frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/frmMain.Designer.cs -------------------------------------------------------------------------------- /frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/frmMain.cs -------------------------------------------------------------------------------- /frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/frmMain.resx -------------------------------------------------------------------------------- /frmMode.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/frmMode.Designer.cs -------------------------------------------------------------------------------- /frmMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/frmMode.cs -------------------------------------------------------------------------------- /frmMode.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/frmMode.resx -------------------------------------------------------------------------------- /frmSDS.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/frmSDS.Designer.cs -------------------------------------------------------------------------------- /frmSDS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/frmSDS.cs -------------------------------------------------------------------------------- /frmSDS.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/frmSDS.resx -------------------------------------------------------------------------------- /frmTune.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/frmTune.Designer.cs -------------------------------------------------------------------------------- /frmTune.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/frmTune.cs -------------------------------------------------------------------------------- /frmTune.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/frmTune.resx -------------------------------------------------------------------------------- /packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/packages.config -------------------------------------------------------------------------------- /wintelive.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/wintelive.csproj -------------------------------------------------------------------------------- /wtl-structures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/curlyboi/WinTelive/HEAD/wtl-structures.cs --------------------------------------------------------------------------------