mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-01-08 12:50:52 +00:00
le_audio_demo_util_sink: fix unused variable warninigs
This commit is contained in:
parent
d7d45b3213
commit
ed07a8bd76
@ -404,7 +404,7 @@ void le_audio_demo_util_sink_receive(uint8_t stream_index, uint8_t *packet, uint
|
||||
uint16_t offset = 4;
|
||||
uint32_t time_stamp = 0;
|
||||
if (ts_flag){
|
||||
uint32_t time_stamp = little_endian_read_32(packet, offset);
|
||||
time_stamp = little_endian_read_32(packet, offset);
|
||||
offset += 4;
|
||||
}
|
||||
|
||||
@ -418,6 +418,12 @@ void le_audio_demo_util_sink_receive(uint8_t stream_index, uint8_t *packet, uint
|
||||
uint8_t packet_status_flag = (uint8_t) (header_2 >> 14);
|
||||
offset += 2;
|
||||
|
||||
// avoid warning for (yet) unused fields
|
||||
UNUSED(con_handle);
|
||||
UNUSED(pb_flag);
|
||||
UNUSED(iso_load_len);
|
||||
UNUSED(packet_status_flag);
|
||||
|
||||
// start with first packet on first stream
|
||||
if (group_last_packet_received == false){
|
||||
if (stream_index != 0){
|
||||
|
Loading…
Reference in New Issue
Block a user