Page 1 of 1

BLE always advertises at adv_int_max

Posted: Sun May 25, 2025 7:30 am
by akshaay24
Hi,

I have configured adv_int_min =1000msec and adv_int_max = 1500msec.
Still what i can see on sniffer is ble is always advertising at15000msec but for each advertising interval i am expecting random time between 1000msec and 1500msec .

Following is my BLE configuration for bluedroid and attached is snippet for sniffed data

Code: Select all

static esp_ble_adv_params_t adv_params = {
    .adv_int_min        = 0x640,
    .adv_int_max        = 0x960,
    .adv_type           = ADV_TYPE_IND,
    .own_addr_type      = BLE_ADDR_TYPE_PUBLIC,
    //.peer_addr            =
    //.peer_addr_type       =
    .channel_map        = ADV_CHNL_37,
    .adv_filter_policy = ADV_FILTER_ALLOW_SCAN_ANY_CON_ANY,
};
Thank you.
Akshay

Re: BLE always advertises at adv_int_max

Posted: Sat May 31, 2025 8:00 pm
by akshaay24
@chegewara can you please help me to resolve this