about // doc

Quick Reference of nRF51822

Created: Jul, 2015

Last modified: Aug, 2015

Here are links to posts or tutorials I found useful when learning nRF51822.

static app_button_cfg_t buttons[] =
{
	// this enables internal pull-up
    // {BUTTON_SS, false, BUTTON_PULL, button_event_handler}  

    // this disables the internal pull-up, to use the external pull-up
    {BUTTON_SS, APP_BUTTON_ACTIVE_LOW, NRF_GPIO_PIN_NOPULL, button_event_handler}  
};
comments powered by Disqus