As the title suggests, I am unable to set P0.01 as a gpio output. I know this pin is also used to source an external LFCLK, however I am using the internal RC clock.
I have the following defines in sdk_config
#define CLOCK_CONFIG_LF_SRC 0
nrf_gpio_cfg_output(test_pin);
while(1)
{
nrf_gpio_pin_toggle(test_pin);
nrf_delay_ms(50);
}