Hi,
After a connection long push event does not work! But before a connection long push works fluently.
I could not found the error.
Thank you for your interest.
I am initializing with this
static void buttons_leds_init( void )
{
uint32_t err_code = bsp_init(BSP_INIT_LEDS | BSP_INIT_BUTTONS, bsp_event_handler);
APP_ERROR_CHECK(err_code);
err_code = bsp_event_to_button_action_assign(BSP_BOARD_BUTTON_0, BSP_BUTTON_ACTION_PUSH, BT0_SHORT_PUSH);
APP_ERROR_CHECK(err_code);
err_code = bsp_event_to_button_action_assign(BSP_BOARD_BUTTON_0, BSP_BUTTON_ACTION_LONG_PUSH, BT0_LONG_PUSH);
APP_ERROR_CHECK(err_code);
}