ESP-IDF
BLE_ISVALID_PARAM
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading (3/5)...
Files
loading (4/5)...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
BLE_ISVALID_PARAM
BLE_ISVALID_PARAM macro
Syntax
Show:
Summary
Declaration
from
btc_gap_ble.h:23
#define
BLE_ISVALID_PARAM
(
x
,
min
,
max
)
(
(
(
x
)
>=
(
min
)
&&
(
x
)
<=
(
max
)
)
)
Arguments
Argument
x
min
max
Examples
References
from
examples
Code
Location
#define
BLE_ISVALID_PARAM
(
x
,
min
,
max
)
(
(
(
x
)
>=
(
min
)
&&
(
x
)
<=
(
max
)
)
)
btc_gap_ble.h:23
if
(
!
BLE_ISVALID_PARAM
(
ble_adv_params
->
adv_int_min
,
BTM_BLE_ADV_INT_MIN
,
BTM_BLE_ADV_INT_MAX
)
||
btc_gap_ble.c:532
!
BLE_ISVALID_PARAM
(
ble_adv_params
->
adv_int_max
,
BTM_BLE_ADV_INT_MIN
,
BTM_BLE_ADV_INT_MAX
)
)
{
btc_gap_ble.c:533
if
(
!
BLE_ISVALID_PARAM
(
ble_adv_params
->
peer_addr_type
,
BLE_ADDR_TYPE_PUBLIC
,
BLE_ADDR_TYPE_RANDOM
)
)
{
btc_gap_ble.c:554
if
(
BLE_ISVALID_PARAM
(
scan_params
->
scan_interval
,
BTM_BLE_SCAN_INT_MIN
,
BTM_BLE_SCAN_INT_MAX
)
&&
btc_gap_ble.c:601
BLE_ISVALID_PARAM
(
scan_params
->
scan_window
,
BTM_BLE_SCAN_WIN_MIN
,
BTM_BLE_SCAN_WIN_MAX
)
&&
btc_gap_ble.c:602
BLE_ISVALID_PARAM
(
scan_params
->
own_addr_type
,
BLE_ADDR_TYPE_PUBLIC
,
BLE_ADDR_TYPE_RPA_RANDOM
)
&&
btc_gap_ble.c:603
BLE_ISVALID_PARAM
(
scan_params
->
scan_filter_policy
,
BLE_SCAN_FILTER_ALLOW_ALL
,
BLE_SCAN_FILTER_ALLOW_WLIST_RPA_DIR
)
&&
btc_gap_ble.c:604
BLE_ISVALID_PARAM
(
scan_params
->
scan_duplicate
,
BLE_SCAN_DUPLICATE_DISABLE
,
BLE_SCAN_DUPLICATE_MAX
-
1
)
&&
btc_gap_ble.c:605
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out