Hi there!
I have nRF51 DK (PCA10028).
I config GIPO as below:
nrf_drv_gpiote_out_config_t out_config = GPIOTE_CONFIG_OUT_SIMPLE(false);
err_code = nrf_drv_gpiote_out_init(LED_1, &out_config);
APP_ERROR_CHECK(err_code);
Why do LED_1 turn on?
I think this config is made LED_1 turn off.
Thanks.