Welcome to the FlexRadio Community! Please review the new Community Rules and other important new Community information on the Message Board.
The latest SmartSDR Software:
SmartSDR v4.1.5 | SmartSDR v4.1.5 Release Notes
SmartSDR v3.10.15 | SmartSDR v3.10.15 Release Notes
The latest 4O3A Genius Product Software:
The latest 4O3A Genius Product Software and Firmware
SmartSDR v4.1.5 | SmartSDR v4.1.5 Release Notes
SmartSDR v3.10.15 | SmartSDR v3.10.15 Release Notes
The latest 4O3A Genius Product Software:
The latest 4O3A Genius Product Software and Firmware
How to Receive Technical Support::
If you are needing assistance with FlexRadio products, please refer to the product documentation or check the Help Center for known solutions. Need technical support from FlexRadio? It's as simple as creating a HelpDesk ticket.
If you are needing assistance with FlexRadio products, please refer to the product documentation or check the Help Center for known solutions. Need technical support from FlexRadio? It's as simple as creating a HelpDesk ticket.
Start radio without SSDR
James Whiteway
Member
How little do you need to connect to your radio without SSDR?
How about this:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;
using Flex.Smoothlake.FlexLib;
namespace PanadapterTest
{
public partial class Form1 : Form
{
private Radio _thisRadio;
private Slice _thisSlice;
// private Panadapter _thisPanadapter;
public Form1()
{
InitializeComponent();
API.RadioAdded += API_RadioAdded;
API.RadioRemoved += API_RadioRemoved;
API.ProgramName = "PanadapterTest";
API.IsGUI = true;
API.Init();
}
private void Form1_Load(object sender, EventArgs e)
{
CheckForIllegalCrossThreadCalls = false;
}
private void API_RadioAdded(Radio radio)
{
_thisRadio = radio;
}
private void API_RadioRemoved(Radio radio)
{
}
private void radio_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
}
private void radio_PanadapterRemoved(Panadapter pan)
{
Console.WriteLine("radio_PanadapterRemoved fired
");
}
private void radio_PanadapterAdded(Panadapter pan, Waterfall fall)
{
Console.WriteLine("radio_PanadapterAdded fired
");
// pan.PropertyChanged += panadapter_PropertyChanged;
}
private void panadapter_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
Console.WriteLine("panadapter_PropertyChanged fired
");
}
private void radio_SliceRemoved(Slice slice)
{
Console.WriteLine("radio_SliceRemoved fired
");
}
private void radio_SliceAdded(Slice slice)
{
slice.PropertyChanged += new PropertyChangedEventHandler(slice_PropertyChanged);// makes freqtxtbx show freq from SSDR
_thisSlice = slice;
}
private void slice_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
{
}
}
private void btnExit_Click(object sender, EventArgs e)
{
API.CloseSession();
_thisRadio.Disconnect();
Application.Exit();
}
private void btnConnect_Click(object sender, EventArgs e)
{
_thisRadio.Connect();
double freq = 10.000d;
string RXA = "Ant 1";
string Mode = "AM";
//RequestPanafall gets the radio to send data to the client
Slice Slice0 = new Slice(_thisRadio);
Slice0 = _thisRadio.CreateSlice(freq, RXA, Mode);
Slice0.RequestSliceFromRadio();
// _thisRadio.RequestPanafall();
}
}
}
Two buttons and a form. Once connected, the radio will go to WWV @ 10Mhz. (Walt's idea)
Although not in this example, I am working on getting the Panadapter data and creating a panadapter as well. Once I figure the correct syntax for subscribing to the PanadapterDataReady event!
But, I thought someone out there would like to see how simple it really is just to get connected. After that, it does start to get complicated. (my testbed program is much more busy than this)
james
WD5GWY
Edit: I forgot to add, be sure to ADD REFERENCES to Flexlib and the other dll's that are part of Flexlib.
How about this:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Threading;
using Flex.Smoothlake.FlexLib;
namespace PanadapterTest
{
public partial class Form1 : Form
{
private Radio _thisRadio;
private Slice _thisSlice;
// private Panadapter _thisPanadapter;
public Form1()
{
InitializeComponent();
API.RadioAdded += API_RadioAdded;
API.RadioRemoved += API_RadioRemoved;
API.ProgramName = "PanadapterTest";
API.IsGUI = true;
API.Init();
}
private void Form1_Load(object sender, EventArgs e)
{
CheckForIllegalCrossThreadCalls = false;
}
private void API_RadioAdded(Radio radio)
{
_thisRadio = radio;
}
private void API_RadioRemoved(Radio radio)
{
}
private void radio_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
}
private void radio_PanadapterRemoved(Panadapter pan)
{
Console.WriteLine("radio_PanadapterRemoved fired
");
}
private void radio_PanadapterAdded(Panadapter pan, Waterfall fall)
{
Console.WriteLine("radio_PanadapterAdded fired
");
// pan.PropertyChanged += panadapter_PropertyChanged;
}
private void panadapter_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
Console.WriteLine("panadapter_PropertyChanged fired
");
}
private void radio_SliceRemoved(Slice slice)
{
Console.WriteLine("radio_SliceRemoved fired
");
}
private void radio_SliceAdded(Slice slice)
{
slice.PropertyChanged += new PropertyChangedEventHandler(slice_PropertyChanged);// makes freqtxtbx show freq from SSDR
_thisSlice = slice;
}
private void slice_PropertyChanged(object sender, PropertyChangedEventArgs e)
{
{
}
}
private void btnExit_Click(object sender, EventArgs e)
{
API.CloseSession();
_thisRadio.Disconnect();
Application.Exit();
}
private void btnConnect_Click(object sender, EventArgs e)
{
_thisRadio.Connect();
double freq = 10.000d;
string RXA = "Ant 1";
string Mode = "AM";
//RequestPanafall gets the radio to send data to the client
Slice Slice0 = new Slice(_thisRadio);
Slice0 = _thisRadio.CreateSlice(freq, RXA, Mode);
Slice0.RequestSliceFromRadio();
// _thisRadio.RequestPanafall();
}
}
}
Two buttons and a form. Once connected, the radio will go to WWV @ 10Mhz. (Walt's idea)
Although not in this example, I am working on getting the Panadapter data and creating a panadapter as well. Once I figure the correct syntax for subscribing to the PanadapterDataReady event!
But, I thought someone out there would like to see how simple it really is just to get connected. After that, it does start to get complicated. (my testbed program is much more busy than this)
james
WD5GWY
Edit: I forgot to add, be sure to ADD REFERENCES to Flexlib and the other dll's that are part of Flexlib.
0
Leave a Comment
Categories
- All Categories
- 388 Community Topics
- 2.2K New Ideas
- 658 The Flea Market
- 8.4K Software
- 156 SmartSDR+
- 6.5K SmartSDR for Windows
- 186 SmartSDR for Maestro and M models
- 439 SmartSDR for Mac
- 275 SmartSDR for iOS
- 265 SmartSDR CAT
- 204 DAX
- 386 SmartSDR API
- 9.4K Radios and Accessories
- 53 Aurora
- 297 FLEX-8000 Signature Series
- 7.2K FLEX-6000 Signature Series
- 970 Maestro
- 58 FlexControl
- 866 FLEX Series (Legacy) Radios
- 944 Genius Products
- 471 Power Genius XL Amplifier
- 347 Tuner Genius XL
- 126 Antenna Genius
- 306 Shack Infrastructure
- 215 Networking
- 468 Remote Operation (SmartLink)
- 142 Contesting
- 811 Peripherals & Station Integration
- 144 Amateur Radio Interests
- 1.1K Third-Party Software