Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b62e3ee5 authored by Łukasz Rymanowski's avatar Łukasz Rymanowski
Browse files

btm/iso: Add common hci constants

Bug: 150670922
Tag: #feature
Sponsor: jpawlowski@
test: compile

Change-Id: I97e7a71623b7641c531567413708c1742e96725b
parent 3154232a
Loading
Loading
Loading
Loading
+13 −0
Original line number Diff line number Diff line
@@ -25,6 +25,19 @@

namespace bluetooth {
namespace hci {
constexpr uint8_t kIsoCodingFormatLc3 = 0x06;
constexpr uint8_t kIsoCodingFormatVendorSpecific = 0xFF;

constexpr uint8_t kIsoCigPackingSequential = 0x00;
constexpr uint8_t kIsoCigPackingInterleaved = 0x01;

constexpr uint8_t kIsoCigFramingUnframed = 0x00;
constexpr uint8_t kIsoCigFramingFramed = 0x01;

constexpr uint8_t kIsoCigPhy1M = 0x01;
constexpr uint8_t kIsoCigPhy2M = 0x02;
constexpr uint8_t kIsoCigPhyC = 0x04;

namespace iso_manager {

constexpr uint8_t kIsoDataPathDirectionIn = 0x00;