Example #1
0
        // link the instance to a real YoctoAPI object
        internal override void linkToHardware(string hwdName)
        {
            YTvoc hwd = YTvoc.FindTvoc(hwdName);

            // first redo base_init to update all _func pointers
            base_init(hwd, hwdName);
            // then setup Yocto-API pointers and callbacks
            init(hwd);
        }
Example #2
0
        public static YTvocProxy FindTvoc(string name)
        {
            // cases to handle:
            // name =""  no matching unknwn
            // name =""  unknown exists
            // name != "" no  matching unknown
            // name !="" unknown exists
            YTvoc      func = null;
            YTvocProxy res  = (YTvocProxy)YFunctionProxy.FindSimilarUnknownFunction("YTvocProxy");

            if (name == "")
            {
                if (res != null)
                {
                    return(res);
                }
                res = (YTvocProxy)YFunctionProxy.FindSimilarKnownFunction("YTvocProxy");
                if (res != null)
                {
                    return(res);
                }
                func = YTvoc.FirstTvoc();
                if (func != null)
                {
                    name = func.get_hardwareId();
                    if (func.get_userData() != null)
                    {
                        return((YTvocProxy)func.get_userData());
                    }
                }
            }
            else
            {
                func = YTvoc.FindTvoc(name);
                if (func.get_userData() != null)
                {
                    return((YTvocProxy)func.get_userData());
                }
            }
            if (res == null)
            {
                res = new YTvocProxy(func, name);
            }
            if (func != null)
            {
                res.linkToHardware(name);
                if (func.isOnline())
                {
                    res.arrival();
                }
            }
            return(res);
        }