Unable to set P0.01 as a GPIO output

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 NRFX_CLOCK_CONFIG_LF_SRC 0
#define CLOCK_CONFIG_LF_SRC 0
#define NRF_SDH_CLOCK_LF_SRC 0
Also, I have made sure that NRF_CLOCK->LFCLKSRS is set to 0, yet I am still unable to toggle P0.01 as a gpio pin. 
Below is the code I am using to try and test this pin, it works for other pins just not P0.00 or P0.01.
uint16_t test_pin = NRF_GPIO_PIN_MAP(0, 1);
nrf_gpio_cfg_output(test_pin);
while(1)
{
     nrf_gpio_pin_toggle(test_pin);
     nrf_delay_ms(50);
}
P0.01 just stays low the whole time. Also, I am using the mbn52832 module dev kit with nrf sdk 16, schematic is here mbn52832_schematic.pdf (murata.com).
I have removed R46 and R45 and placed a 0 ohm resistor at R43 and R44 to ensure that the output pin is connected directly to the mcu.
Any insights into what the problem might be would be greatly appreciated,
Harrison
Related