コード例 #1
0
        // link the instance to a real YoctoAPI object
        internal override void linkToHardware(string hwdName)
        {
            YMagnetometer hwd = YMagnetometer.FindMagnetometer(hwdName);

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

            if (name == "")
            {
                if (res != null)
                {
                    return(res);
                }
                res = (YMagnetometerProxy)YFunctionProxy.FindSimilarKnownFunction("YMagnetometerProxy");
                if (res != null)
                {
                    return(res);
                }
                func = YMagnetometer.FirstMagnetometer();
                if (func != null)
                {
                    name = func.get_hardwareId();
                    if (func.get_userData() != null)
                    {
                        return((YMagnetometerProxy)func.get_userData());
                    }
                }
            }
            else
            {
                func = YMagnetometer.FindMagnetometer(name);
                if (func.get_userData() != null)
                {
                    return((YMagnetometerProxy)func.get_userData());
                }
            }
            if (res == null)
            {
                res = new YMagnetometerProxy(func, name);
            }
            if (func != null)
            {
                res.linkToHardware(name);
                if (func.isOnline())
                {
                    res.arrival();
                }
            }
            return(res);
        }