mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
33 lines
922 B
C
33 lines
922 B
C
|
#include "bt_utils.h"
|
||
|
|
||
|
|
||
|
/*****************************************************************************
|
||
|
**
|
||
|
** Function raise_priority_a2dp
|
||
|
**
|
||
|
** Description Raise task priority for A2DP streaming
|
||
|
**
|
||
|
** Returns void
|
||
|
**
|
||
|
*******************************************************************************/
|
||
|
void raise_priority_a2dp(tHIGH_PRIORITY_TASK high_task)
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
/*****************************************************************************
|
||
|
**
|
||
|
** Function adjust_priority_a2dp
|
||
|
**
|
||
|
** Description increase the a2dp consumer task priority temporarily when start
|
||
|
** audio playing, to avoid overflow the audio packet queue, restore
|
||
|
** the a2dp consumer task priority when stop audio playing.
|
||
|
**
|
||
|
** Returns void
|
||
|
**
|
||
|
*******************************************************************************/
|
||
|
void adjust_priority_a2dp(int start)
|
||
|
{
|
||
|
return;
|
||
|
}
|