This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

advertising from fast to slow and slow mode forever before connected

/**@brief Function for initializing the Advertising functionality.
 */
static void advertising_init(void)
{
    uint32_t      err_code;
    ble_advdata_t advdata;

    // Build and set advertising data
    memset(&advdata, 0, sizeof(advdata));

    advdata.name_type               = BLE_ADVDATA_FULL_NAME;
    advdata.include_appearance      = true;
    advdata.flags                   = BLE_GAP_ADV_FLAGS_LE_ONLY_GENERAL_DISC_MODE;
    advdata.uuids_complete.uuid_cnt = sizeof(m_adv_uuids) / sizeof(m_adv_uuids[0]);
    advdata.uuids_complete.p_uuids  = m_adv_uuids;

    ble_adv_modes_config_t options = {0};
    options.ble_adv_fast_enabled  = BLE_ADV_FAST_ENABLED;
    options.ble_adv_fast_interval = 100;
    options.ble_adv_fast_timeout  = 10;
		
		options.ble_adv_directed_slow_enabled = BLE_ADV_SLOW_ENABLED;
		options.ble_adv_slow_interval = 1000;
		options.ble_adv_slow_timeout = 0;

    err_code = ble_advertising_init(&advdata, NULL, &options, on_adv_evt, NULL);
    APP_ERROR_CHECK(err_code);
}

int main(void)
{
    uint32_t err_code;
    bool erase_bonds;

    // Initialize.
		app_trace_init();
    timers_init();
    buttons_leds_init(&erase_bonds);
    ble_stack_init();
    device_manager_init(erase_bonds);
    gap_params_init();
    advertising_init();
    services_init();
    conn_params_init();
    // Start execution.
    application_timers_start();

		err_code = ble_advertising_start(BLE_ADV_MODE_SLOW);
    APP_ERROR_CHECK(err_code);

    // Enter main loop.
    for (;;)
    {
        power_manage();
    }
}

my code here ,why it advertising fast, but after fast advertising timeout ,it not enter slow advertising mode enter idle mode?????

Related