Hi Aysush, > This change add a new property to retrieve the PHYs > supported by the controller. > > Reviewed-by: Anupam Roy <anupam.r@xxxxxxxxxxx> > --- > doc/adapter-api.txt | 21 +++++++++++++++++++++ > 1 file changed, 21 insertions(+) > > diff --git a/doc/adapter-api.txt b/doc/adapter-api.txt > index 464434a81..25e370d75 100644 > --- a/doc/adapter-api.txt > +++ b/doc/adapter-api.txt > @@ -335,3 +335,24 @@ Properties string Address [readonly] > "peripheral": Supports the peripheral role. > "central-peripheral": Supports both roles > concurrently. > + > + array{string} SupportedPhyConfiguration [readonly] > + > + List of PHYs supported by the controller. > + > + Possible values: > + "BR1M1SLOT" > + "BR1M3SLOT" > + "BR1M5SLOT" > + "EDR2M1SLOT" > + "EDR2M3SLOT" > + "EDR2M5SLOT" > + "EDR3M1SLOT" > + "EDR3M3SLOT" > + "EDR3M5SLOT" > + "LE1MTX" > + "LE1MRX" > + "LE2MTX" > + "LE2MRX" > + "LECODEDTX" > + "LECODEDRX" we don’t do string constants like this in D-Bus API. They are lowercase and verbose “br-1m-1slot” etc. at least. Regards Marcel