public static void OpenRockey(ref uint hDongle, int index)
        {
            uint ret = RockeyArmHelper.Dongle_Open(ref hDongle, index);

            if (ret != 0)
            {
                throw new Exception(RockeyArmHelper.GetErrorInfo(ret));
            }
        }