BgApiDriver.BgApi.ble_cmd_sm_set_oob_data C# (CSharp) Method

ble_cmd_sm_set_oob_data() public method

public ble_cmd_sm_set_oob_data ( byte oob ) : void
oob byte
return void
        public void ble_cmd_sm_set_oob_data(byte[] oob)
        {
            log("ble_cmd_sm_set_oob_data_id");
            byte[] _data = new byte[SIZE_HEADER + 0 + 1 + oob.Length];
            int idx = 0;
            // header
            _data[idx++] = (byte)ble_dev_types.ble_dev_type_ble|(byte)ble_msg_types.ble_msg_type_cmd|0x0;
            _data[idx++] = (byte)(0 + 1 + oob.Length);
            _data[idx++] = (byte)ble_classes.ble_cls_sm;
            _data[idx++] = (byte)ble_command_ids.ble_cmd_sm_set_oob_data_id;
            // data
            _data[idx++] = (byte)(oob.Length);
            for(int i = 0; i < oob.Length; i++)
            {
                _data[idx++] = oob[i];
            }
            // send
            Send(new BgApiCommand() { Data = _data }, false);
        }
BgApi