Hi Sean,
Just to make sure, have you download LPCOpen? It contains many code examples.
You said you have an LPCXpresso43S67 board, but the picture you attached is for LPCXpresso4337.
I don't know whether two boards are the same, and I assume you have the first one.
I see P2_13 is in the same position on my board.
You can find the official documents of MCU LPC43S67JET100 on the board at:
LPC43S67JET100|Arm® Cortex-M4/M0|32-bit MCU|NXP
In the data sheet, you can find pin description.
For example, the pin P2_13 is in p. 19. It can be configured as GPIO1[13] in FUNC0.
Therefore, you may try the following code:
Chip_SCU_PinMuxSet(0x2, 13, (SCU_MODE_INACT | SCU_MODE_FUNC0)); /* P2_13 => GPIO1[13] */
Chip_GPIO_SetPinDIROutput(LPC_GPIO_PORT, 1, 13);
Chip_GPIO_SetPinState(LPC_GPIO_PORT, 1, 13, (bool) true);
Hope this helps.
Frank