BT 5.0: Implement Is feature support API's
[platform/core/connectivity/bluetooth-frwk.git] / bt-service-adaptation / services / adapter / bt-service-core-adapter-le.c
index 353a8ec..145c68a 100644 (file)
@@ -1610,4 +1610,21 @@ int _bt_is_advertising(void)
                return FALSE;
 }
 
+gboolean _bt_is_le_2m_phy_supported(void)
+{
+       if (le_feature_info.le_2m_phy)
+               return TRUE;
+       else
+               return FALSE;
+}
+
+gboolean _bt_is_le_coded_phy_supported(void)
+{
+       if (le_feature_info.le_coded_phy)
+               return TRUE;
+       else
+               return FALSE;
+}
+
+
 /*************************************** LE Scan APIs *********************************************/