Hi I am trying to do the led blinking in nrf52840 but the led is not even turning on i have given the code below can any body help me out.
nrf_gpio_cfg_output(14);
nrf_gpio_cfg_output(15);
nrf_gpio_cfg_output(16);
nrf_gpio_cfg_output(13);
while (true)
{
nrf_gpio_pin_clear(13);
nrf_gpio_pin_set(14);
nrf_gpio_pin_set(15);
nrf_gpio_pin_set(16);
printf("Ae\r\n");
nrf_delay_ms(100);
}