BTool.DeviceFormUtils.GetHciExtSetFastTxRespTimeCtrlStr C# (CSharp) Method

GetHciExtSetFastTxRespTimeCtrlStr() public method

public GetHciExtSetFastTxRespTimeCtrlStr ( byte control ) : string
control byte
return string
        public string GetHciExtSetFastTxRespTimeCtrlStr(byte control)
        {
            switch (control)
            {
                case 0:
                    return "HCI_EXT_DISABLE_FAST_TX_RESP_TIME";
                case 1:
                    return "HCI_EXT_ENABLE_FAST_TX_RESP_TIME";
            }
            return "Unknown Set Fast Tx Resp Time Ctrl";
        }