Ejemplo n.º 1
0
 public RigNode(IRigController rigController, IVHostNodeFactory vHostNodeFactory)
 {
     this.Text = "Root";
     CreateContextMenu();
     this.rigController = rigController;
     this.vHostNodeFactory = vHostNodeFactory;
 }
Ejemplo n.º 2
0
        static async Task Main(string[] args)
        {
            string port;
            int    baud;

            (args, port, baud) = GetPort(args);

            //rig = new Ft818(port, baud);
            rig = new NRig.Rigs.Hamlib.HamLibWrapper("FT-857", "COM12");

            try
            {
                await Run(args);
            }
            catch (NotImplementedException)
            {
                Console.WriteLine("Not implemented");
            }
        }