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

s110 does not support the each of the four external buttons?

 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?

Parents Reply Children
Related