avrcp_target: add AVRCP_OPERATION_ID_VENDOR_UNIQUE to the set of valid AVRCP ops

This commit is contained in:
Milanka Ringwald 2024-10-28 10:29:13 +01:00 committed by Matthias Ringwald
parent 9c84d04f6c
commit 1f2f3fd126

View File

@ -920,7 +920,7 @@ static bool avcrp_operation_id_is_valid(avrcp_operation_id_t operation_id){
if (operation_id < AVRCP_OPERATION_ID_F1) return false;
if (operation_id < AVRCP_OPERATION_ID_RESERVED_6) return true;
if (operation_id < AVRCP_OPERATION_ID_RESERVED_7) return true;
return false;
}