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

Calling the ble_advertising_start(), sometimes restart main.

My English is still poor, but I hope you can understand me.

Press the button to call ble_advertising_start(), which may occasionally restart main. I set a short timeout. After the timeout, press the button. What's the problem? The code is below.

#define APP_ADV_TIMEOUT_IN_SECONDS 5
#define GPIO_BT BSP_BUTTON_1

void in_pin_handler(nrf_drv_gpiote_pin_t pin, nrf_gpiote_polarity_t action)
{

	uint32_t err_code;
		
	printf("push\n");
	nrf_delay_ms(8500);

	err_code = ble_advertising_start(BLE_ADV_MODE_FAST);
	APP_ERROR_CHECK(err_code);
}

void gpio_input_init(void)
{
    ret_code_t err_code;

    err_code = nrf_drv_gpiote_init();
    APP_ERROR_CHECK(err_code);

    nrf_drv_gpiote_in_config_t in_config = GPIOTE_CONFIG_IN_SENSE_HITOLO(true);
    in_config.pull = NRF_GPIO_PIN_PULLUP;

    err_code = nrf_drv_gpiote_in_init(GPIO_BT, &in_config, in_pin_handler);
    APP_ERROR_CHECK(err_code);

    nrf_drv_gpiote_in_event_enable(GPIO_BT, true);
}

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

    // Initialize.
    APP_TIMER_INIT(APP_TIMER_PRESCALER, APP_TIMER_OP_QUEUE_SIZE, false);
    uart_init();
	
    gpio_input_init();
    
    //buttons_leds_init(&erase_bonds);
    ble_stack_init();
    gap_params_init();
    services_init();
    advertising_init();
    conn_params_init();
	
    printf("\r\nUART Start!\r\n");
    //err_code = ble_advertising_start(BLE_ADV_MODE_FAST);
    //APP_ERROR_CHECK(err_code);
    
    // Enter main loop.
    for (;;)
    {
        power_manage();
    }
}
Related