Thanks to all who answered. After some fiddling around (and with help from Erich´s great blog), I found my way around the PE. At least the LED is blinking :smileyhappy: It was a lot easier than I had expected.
I am sure I will come back once I want to handle events, use the UART or whatever.
One side note: the code which PE generates for pin handling is slightly weird. For the green LED on the FRDM-KL25Z, it defines the function
void Bit2_PutVal(LDD_TDeviceData *DeviceDataPtr, bool Val)
The help states that DeviceDataPtr is to be initialized with Bit2_Init().
Looking deeper into the function, however, it starts with the somewhat funny line
(void)DeviceDataPtr; /* Parameter is not used, suppress unused argument warning */
What´s happening here?
Another note: A debug cycle (compile, load, run) is much faster than with TI´s CCS6 which I´m used to. But: how can I reflash the device (using SDA) without disconnecting the debugger first? I feel I have to use more mouse clicks than it should take. An automatic load after (successful) compile would be great.
Regards,
Max