BTool.DeviceTabsForm.GetConnectionParameters C# (CSharp) Method

GetConnectionParameters() public method

public GetConnectionParameters ( ) : void
return void
        public void GetConnectionParameters()
        {
            devForm.ConnParamState = DeviceForm.GAPGetConnectionParams.MinConnIntSeq;
            HCICmds.GAPCmds.GAP_GetParam gapGetParam = new HCICmds.GAPCmds.GAP_GetParam();
            gapGetParam.paramId = HCICmds.GAP_ParamId.TGAP_CONN_EST_INT_MIN;
            devForm.sendCmds.SendGAP(gapGetParam);
            gapGetParam.paramId = HCICmds.GAP_ParamId.TGAP_CONN_EST_INT_MAX;
            devForm.sendCmds.SendGAP(gapGetParam);
            gapGetParam.paramId = HCICmds.GAP_ParamId.TGAP_CONN_EST_LATENCY;
            devForm.sendCmds.SendGAP(gapGetParam);
            gapGetParam.paramId = HCICmds.GAP_ParamId.TGAP_CONN_EST_SUPERV_TIMEOUT;
            devForm.sendCmds.SendGAP(gapGetParam);
        }
DeviceTabsForm