Fixed hello sleep

This commit is contained in:
Sparchatus 2022-03-23 13:52:32 +00:00
parent f2a5dae163
commit efa60d03b8

View File

@ -15,7 +15,6 @@
#include <stdio.h> #include <stdio.h>
#include <unistd.h>
#include <string.h> #include <string.h>
#include <aos/aos.h> #include <aos/aos.h>
@ -35,8 +34,8 @@ int main(int argc, char *argv[])
if (argc > 1 && !strncmp(argv[1], HELLO_CATCH_COMMAND, sizeof(HELLO_CATCH_COMMAND))) { if (argc > 1 && !strncmp(argv[1], HELLO_CATCH_COMMAND, sizeof(HELLO_CATCH_COMMAND))) {
while(1) { while(1) {
printf("Catch me if you can!\n"); printf("Catch me if you can!\n");
// wait for 1 second // wait a bit
sleep(1); for(volatile int j = 0; j < 500000000; ++j);
} }
} }