PHY options for transmission and reception
C
#define BLE_GAP_PHY_OPTION_NO_PREF (0U) #define BLE_GAP_PHY_OPTION_1M (1U <<0U) #define BLE_GAP_PHY_OPTION_2M (1U <<1U) #define BLE_GAP_PHY_OPTION_CODED (1U <<2U)
Description
Defines the PHY options for transmission (TX) and reception (RX).
Macro Definition
Macro | Description |
---|---|
BLE_GAP_PHY_OPTION_NO_PREF | No PHY preference. |
BLE_GAP_PHY_OPTION_1M | Preference for using the LE 1M PHY. |
BLE_GAP_PHY_OPTION_2M | Preference for using the LE 2M PHY. |
BLE_GAP_PHY_OPTION_CODED | Preference for using the LE Coded PHY. |