Hi,
I guess that you have configured the pin PE11 (GPIO75) because it is connected with the LED D13. So, I think the aim of the test is to see the LED D13 blinking. Let me underline that the behavior of the function pal_lld_writepad is exactly what expected. The first istruction in the cycle
pal_lld_writepad(PORT_E, PIN_GPIO75, PAL_HIGH);
will switch-off the LED D13, while the second instruction
pal_lld_writepad(PORT_E, PIN_GPIO75, PAL_LOW);
will switch-on the LED13.
If you want to see the LED D13 blinking, you have to add also a delay between the switch on and the switch off. So, you have to modify the cycle as below:
for (;;) {
osalThreadDelayMilliseconds(500);
pal_lld_writepad(PORT_E, PIN_GPIO75, PAL_HIGH);
osalThreadDelayMilliseconds(500);
pal_lld_writepad(PORT_E, PIN_GPIO75, PAL_LOW);
}
Moreover, please, remember to close the jumper JP14 that connect the LED D13 to the power.
Regards,
Luigi