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

MacroDescription
BLE_GAP_PHY_OPTION_NO_PREFNo PHY preference.
BLE_GAP_PHY_OPTION_1MPreference for using the LE 1M PHY.
BLE_GAP_PHY_OPTION_2MPreference for using the LE 2M PHY.
BLE_GAP_PHY_OPTION_CODEDPreference for using the LE Coded PHY.