// link the instance to a real YoctoAPI object
        internal override void linkToHardware(string hwdName)
        {
            YWatchdog hwd = YWatchdog.FindWatchdog(hwdName);

            // first redo base_init to update all _func pointers
            base_init(hwd, hwdName);
            // then setup Yocto-API pointers and callbacks
            init(hwd);
        }
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            string    errmsg = "";
            string    target;
            YWatchdog watchdog;
            string    state;

            if (args.Length < 2)
            {
                usage();
            }
            target = args[0].ToUpper();
            state  = args[1].ToUpper();

            if (YAPI.RegisterHub("usb", ref errmsg) != YAPI.SUCCESS)
            {
                Console.WriteLine("RegisterHub error: " + errmsg);
                Environment.Exit(0);
            }

            if (target == "ANY")
            {
                watchdog = YWatchdog.FirstWatchdog();
                if (watchdog == null)
                {
                    Console.WriteLine("No module connected (check USB cable) ");
                    Environment.Exit(0);
                }
            }
            else
            {
                watchdog = YWatchdog.FindWatchdog(target + ".watchdog1");
            }

            if (watchdog.isOnline())
            {
                if (state == "ON")
                {
                    watchdog.set_running(YWatchdog.RUNNING_ON);
                }
                if (state == "OFF")
                {
                    watchdog.set_running(YWatchdog.RUNNING_OFF);
                }
                if (state == "RESET")
                {
                    watchdog.resetWatchdog();
                }
            }
            else
            {
                Console.WriteLine("Module not connected");
                Console.WriteLine("check identification and USB cable");
            }
            YAPI.FreeAPI();
        }
 // perform the 2nd stage setup that requires YoctoAPI object
 protected void init(YWatchdog hwd)
 {
     if (hwd == null)
     {
         return;
     }
     base.init(hwd);
     InternalStuff.log("registering Watchdog callback");
     _func.registerValueCallback(valueChangeCallback);
 }
Ejemplo n.º 4
0
    /**
     * <summary>
     *   Retrieves a watchdog for a given identifier.
     * <para>
     *   The identifier can be specified using several formats:
     * </para>
     * <para>
     * </para>
     * <para>
     *   - FunctionLogicalName
     * </para>
     * <para>
     *   - ModuleSerialNumber.FunctionIdentifier
     * </para>
     * <para>
     *   - ModuleSerialNumber.FunctionLogicalName
     * </para>
     * <para>
     *   - ModuleLogicalName.FunctionIdentifier
     * </para>
     * <para>
     *   - ModuleLogicalName.FunctionLogicalName
     * </para>
     * <para>
     * </para>
     * <para>
     *   This function does not require that the watchdog is online at the time
     *   it is invoked. The returned object is nevertheless valid.
     *   Use the method <c>YWatchdog.isOnline()</c> to test if the watchdog is
     *   indeed online at a given time. In case of ambiguity when looking for
     *   a watchdog by logical name, no error is notified: the first instance
     *   found is returned. The search is performed first by hardware name,
     *   then by logical name.
     * </para>
     * </summary>
     * <param name="func">
     *   a string that uniquely characterizes the watchdog
     * </param>
     * <returns>
     *   a <c>YWatchdog</c> object allowing you to drive the watchdog.
     * </returns>
     */
    public static YWatchdog FindWatchdog(string func)
    {
        YWatchdog obj;

        obj = (YWatchdog)YFunction._FindFromCache("Watchdog", func);
        if (obj == null)
        {
            obj = new YWatchdog(func);
            YFunction._AddToCache("Watchdog", func, obj);
        }
        return(obj);
    }
        public static YWatchdogProxy FindWatchdog(string name)
        {
            // cases to handle:
            // name =""  no matching unknwn
            // name =""  unknown exists
            // name != "" no  matching unknown
            // name !="" unknown exists
            YWatchdog      func = null;
            YWatchdogProxy res  = (YWatchdogProxy)YFunctionProxy.FindSimilarUnknownFunction("YWatchdogProxy");

            if (name == "")
            {
                if (res != null)
                {
                    return(res);
                }
                res = (YWatchdogProxy)YFunctionProxy.FindSimilarKnownFunction("YWatchdogProxy");
                if (res != null)
                {
                    return(res);
                }
                func = YWatchdog.FirstWatchdog();
                if (func != null)
                {
                    name = func.get_hardwareId();
                    if (func.get_userData() != null)
                    {
                        return((YWatchdogProxy)func.get_userData());
                    }
                }
            }
            else
            {
                func = YWatchdog.FindWatchdog(name);
                if (func.get_userData() != null)
                {
                    return((YWatchdogProxy)func.get_userData());
                }
            }
            if (res == null)
            {
                res = new YWatchdogProxy(func, name);
            }
            if (func != null)
            {
                res.linkToHardware(name);
                if (func.isOnline())
                {
                    res.arrival();
                }
            }
            return(res);
        }
        /**
         * <summary>
         *   Enumerates all functions of type Watchdog available on the devices
         *   currently reachable by the library, and returns their unique hardware ID.
         * <para>
         *   Each of these IDs can be provided as argument to the method
         *   <c>YWatchdog.FindWatchdog</c> to obtain an object that can control the
         *   corresponding device.
         * </para>
         * </summary>
         * <returns>
         *   an array of strings, each string containing the unique hardwareId
         *   of a device function currently connected.
         * </returns>
         */
        public static new string[] GetSimilarFunctions()
        {
            List <string> res = new List <string>();
            YWatchdog     it  = YWatchdog.FirstWatchdog();

            while (it != null)
            {
                res.Add(it.get_hardwareId());
                it = it.nextWatchdog();
            }
            return(res.ToArray());
        }
Ejemplo n.º 7
0
        public override async Task <int> Run()
        {
            try {
                await YAPI.RegisterHub(HubURL);

                YWatchdog watchdog;

                if (Target.ToLower() == "any")
                {
                    watchdog = YWatchdog.FirstWatchdog();
                    if (watchdog == null)
                    {
                        WriteLine("No module connected (check USB cable) ");
                        return(-1);
                    }
                }
                else
                {
                    watchdog = YWatchdog.FindWatchdog(Target + ".watchdog1");
                }

                if (await watchdog.isOnline())
                {
                    if (Command.ToUpper() == "ON")
                    {
                        await watchdog.set_running(YWatchdog.RUNNING_ON);
                    }
                    if (Command.ToUpper() == "OFF")
                    {
                        await watchdog.set_running(YWatchdog.RUNNING_OFF);
                    }
                    if (Command.ToUpper() == "RESET")
                    {
                        await watchdog.resetWatchdog();
                    }
                }
                else
                {
                    WriteLine("Module not connected (check identification and USB cable)");
                }
            } catch (YAPI_Exception ex) {
                WriteLine("error: " + ex.Message);
            }

            YAPI.FreeAPI();
            return(0);
        }
 /**
  * <summary>
  *   Retrieves a watchdog for a given identifier.
  * <para>
  *   The identifier can be specified using several formats:
  * </para>
  * <para>
  * </para>
  * <para>
  *   - FunctionLogicalName
  * </para>
  * <para>
  *   - ModuleSerialNumber.FunctionIdentifier
  * </para>
  * <para>
  *   - ModuleSerialNumber.FunctionLogicalName
  * </para>
  * <para>
  *   - ModuleLogicalName.FunctionIdentifier
  * </para>
  * <para>
  *   - ModuleLogicalName.FunctionLogicalName
  * </para>
  * <para>
  * </para>
  * <para>
  *   This function does not require that the watchdog is online at the time
  *   it is invoked. The returned object is nevertheless valid.
  *   Use the method <c>YWatchdog.isOnline()</c> to test if the watchdog is
  *   indeed online at a given time. In case of ambiguity when looking for
  *   a watchdog by logical name, no error is notified: the first instance
  *   found is returned. The search is performed first by hardware name,
  *   then by logical name.
  * </para>
  * </summary>
  * <param name="func">
  *   a string that uniquely characterizes the watchdog
  * </param>
  * <returns>
  *   a <c>YWatchdog</c> object allowing you to drive the watchdog.
  * </returns>
  */
 public static YWatchdog FindWatchdog(string func)
 {
     YWatchdog obj;
     obj = (YWatchdog) YFunction._FindFromCache("Watchdog", func);
     if (obj == null) {
         obj = new YWatchdog(func);
         YFunction._AddToCache("Watchdog", func, obj);
     }
     return obj;
 }
 // perform the initial setup that may be done without a YoctoAPI object (hwd can be null)
 internal override void base_init(YFunction hwd, string instantiationName)
 {
     _func = (YWatchdog)hwd;
     base.base_init(hwd, instantiationName);
 }
        //--- (end of YWatchdog definitions)

        //--- (YWatchdog implementation)
        internal YWatchdogProxy(YWatchdog hwd, string instantiationName) : base(hwd, instantiationName)
        {
            InternalStuff.log("Watchdog " + instantiationName + " instantiation");
            base_init(hwd, instantiationName);
        }