Exemplo n.º 1
0
        /// <summary>
        /// Retrieves the PLLs lock status.
        /// </summary>
        /// <returns>If the function succeeds, the return value is a combination of the PLLs lock bits. Otherwise 0 is returned.</returns>
        public uint PllLock()
        {
            var result = G313Api.GetLock(GetHandle(), 0);

            CheckResultOnZero(result);

            return(result);
        }