PHY options for transmission and reception
C
#define BLE_GAP_PHY_OPTION_NO_PREF 0 #define BLE_GAP_PHY_OPTION_1M (1 <<0) #define BLE_GAP_PHY_OPTION_2M (1 <<1) #define BLE_GAP_PHY_OPTION_CODED (1 <<2)
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. |