BgApiDriver.BgApi.ble_cmd_attclient_read_by_type C# (CSharp) Method

ble_cmd_attclient_read_by_type() public method

public ble_cmd_attclient_read_by_type ( int connection, int start, int end, byte uuid ) : ble_msg_attclient_read_by_type_rsp_t
connection int
start int
end int
uuid byte
return ble_msg_attclient_read_by_type_rsp_t
        public ble_msg_attclient_read_by_type_rsp_t ble_cmd_attclient_read_by_type(int connection, int start, int end, byte[] uuid)
        {
            log("ble_cmd_attclient_read_by_type_id");
            byte[] _data = new byte[SIZE_HEADER + 0 + 1 + 2 + 2 + 1 + uuid.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 + 2 + 2 + 1 + uuid.Length);
            _data[idx++] = (byte)ble_classes.ble_cls_attclient;
            _data[idx++] = (byte)ble_command_ids.ble_cmd_attclient_read_by_type_id;
            // data
            _data[idx++] = (byte)connection;
            _data[idx++] = (byte)start;
            _data[idx++] = (byte)(start >> 8);
            _data[idx++] = (byte)end;
            _data[idx++] = (byte)(end >> 8);
            _data[idx++] = (byte)(uuid.Length);
            for(int i = 0; i < uuid.Length; i++)
            {
                _data[idx++] = uuid[i];
            }
            // send
            BgApiResponse response = Send(new BgApiCommand() { Data = _data }, false);
            return (ble_msg_attclient_read_by_type_rsp_t)response;
        }
BgApi