rfcomm: actually request can send now from l2cap

This commit is contained in:
Matthias Ringwald 2016-04-06 17:00:34 +02:00
parent a31ff99271
commit 4fea3822ee

View File

@ -1944,7 +1944,7 @@ void rfcomm_request_can_send_now_event(uint16_t rfcomm_cid){
return; return;
} }
channel->waiting_for_can_send_now = 1; channel->waiting_for_can_send_now = 1;
rfcomm_notify_channel_can_send(); l2cap_request_can_send_now_event(channel->multiplexer->l2cap_cid);
} }
static int rfcomm_assert_send_valid(rfcomm_channel_t * channel , uint16_t len){ static int rfcomm_assert_send_valid(rfcomm_channel_t * channel , uint16_t len){