1. Turn on the PORTn clock on the SIM_SCGCn register
CLOCK_EnableClock(kCLOCK_PortC); /* Port C Clock Gate Control: Clock enabled */
2. Assign the MUX alternative to the pin on the PORTx_PCRn register
PORT_SetPinMux(PORTC, 7, kPORT_MuxAsGpio);
3. Define if it is an input or an output on the GPIOx_PDDR register
gpio_pin_config_t led_config = {
kGPIO_DigitalOutput, 0
};
GPIO_PinInit(GPIOC, 7, &led_config);
This is how I configured and while checkingusing peripherals window, I can see like this

I added breakpoints at the Toggle function and resumed but the value is zero always.