static app_button_cfg_t buttons[] =
{
{29, false, BUTTON_PULL, button_event_handler},
{30, false, BUTTON_PULL, button_event_handler},
{26, false, BUTTON_PULL, button_event_handler},
{27, false, BUTTON_PULL, button_event_handler},
};
APP_BUTTON_INIT(buttons, sizeof(buttons) / sizeof(buttons[0]), BUTTON_DETECTION_DELAY, false);
If the setting two buttons, Works well.
But When the set of four buttons, Does not operate.
and Stop in the ble_stack_init.
What's the problem?