示例#1
0
文件: XmlCmd.cs 项目: toobright/sdk
        //回读SDK FPGA配置参数
        public static string GetSDKFPGAConfig()
        {
            string cmd = header + HwSetting.GetSDKFPGAConfig() + end;

            return(cmd);
        }
示例#2
0
文件: XmlCmd.cs 项目: toobright/sdk
        //设置SDK FPGA配置参数
        public static string SetSDKFPGAConfig(string xml)
        {
            string cmd = header + HwSetting.SetSDKFPGAConfig(xml) + end;

            return(cmd);
        }