Fix typo in Zephyr simple example (#2738)

Fixes small typo of elapsed in Zephyr simple example.

Signed-off-by: Daniel Mangum <georgedanielmangum@gmail.com>
This commit is contained in:
Daniel Mangum 2023-11-08 17:09:31 -08:00 committed by GitHub
parent 7f8292ffd1
commit 797e534cec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -248,7 +248,7 @@ fail1:
end = k_uptime_get_32();
printf("elpase: %d\n", (end - start));
printf("elapsed: %d\n", (end - start));
}
#define MAIN_THREAD_STACK_SIZE (CONFIG_MAIN_THREAD_STACK_SIZE)