diff --git a/main.c b/main.c index 86ba20e..fafff9e 100644 --- a/main.c +++ b/main.c @@ -21,9 +21,6 @@ #include #include -#define F_CPU 8000000 -#include - /* * atmega8: * Fuse H: 0xda (512 words bootloader) @@ -449,5 +446,10 @@ int main(void) PORTB = 0x00; + uint16_t wait = 0x0000; + do { + __asm volatile ("nop"); + } while (--wait); + jump_to_app(); }