Hello,
I have a problem.
Look at this simple code:
#include#include "pm.h" #include "gpio.h" #include #include #include #include "flashrc.h" int main(void) { while (1) { gpio_set_gpio_pin(AVR_32_PIN_PA07); gpio_set_gpio_pin(AVR_32_PIN_PA08); } return 0; }
It should turn two LEDs on, but it does NOT
turn any. If I only try to turn one LED on
(only one gpio_set_gpio_pin() function is in
"while" loop), everything works fine.
I use EVK1101.
What is wrong?
Thanks in advance for help.
Regards.