diff --git a/esp-vent-main/src/esp-vent-main.cpp b/esp-vent-main/src/esp-vent-main.cpp index b602ec6..c1485d8 100644 --- a/esp-vent-main/src/esp-vent-main.cpp +++ b/esp-vent-main/src/esp-vent-main.cpp @@ -36,16 +36,7 @@ int main(void) { #endif #endif - // TODO: insert code here - - // Force the counter to be placed into memory - volatile static int i = 0 ; - // Enter an infinite loop, just incrementing a counter - while(1) { - i++ ; - // "Dummy" NOP to allow source level single - // stepping of tight while() loop - __asm volatile ("nop"); - } + while(1) {} + return 0 ; }