Hi Marcin Goluch,
Welcome to use kineits chip!
If you want to use the internal oscillator, you even don't need to configure the clock system.
Because the KE04 is using the the internal oscillator as the default clock.
Just modify you code like this:
int main (void)
{
unsigned int i;
GPIO_PinInit(GPIO_PTE7, GPIO_PinOutput);
while (1){
for(i=0;i<65535;i++);
GPIO_PinToggle(GPIO_PTE7);
}
}
}
You can try it on your side.
Wish it helps you!
If you still have question, please let me know!
Have a great day,
Kerry
-----------------------------------------------------------------------------------------------------------------------
Note: If this post answers your question, please click the Correct Answer button. Thank you!
-----------------------------------------------------------------------------------------------------------------------