Hi, Fasih,
Unfortunately, the Processor Expert(PE) is a GUI tools, we have not the User Manual or Guidance for the PE tools.
But for the task to toggle a GPIO, this is the procedure, for example you want to toggle GPIOB_1 bit:
1)Enable GPIO gated clock, you can set the corresponding bit in SIM_PCE0 register.
SIM_PCE0|=1<<6; //enable GPIOA clock
2)clear the corresponding bit in GPIOx_PER register so that GPIO controls the pad.
GPIOB_PER&=~(0x02);
3)set the corresponding bit in GPIOx_DDR register so that the pad is configured as GPIO OUTPUT mode:
GPIOB_DDR|=0x02;
3)you can set the pin as 1 by Setting the GPIOx_DR:
GPIOB_DR|=0x02;
4)clear the pin by clearing the GPIOx_DR
GPIOB_DR&=~(0x02);
Hope it can help you
BR
XiangJun Rong