Skip to content

Commit

Permalink
time_unix: uses ZEPHYR_VERSION_CODE instead (ros2#390)
Browse files Browse the repository at this point in the history
of KERNELVERSION, since zephyr from 2.7 does not use it anymore.

Signed-off-by: Felipe Neves <felipe.neves@linaro.org>
  • Loading branch information
pablogs9 committed Oct 28, 2022
1 parent e4aac4e commit 4213383
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/time_unix.c
Expand Up @@ -30,7 +30,9 @@ extern "C"
#include <math.h>

#if defined(__ZEPHYR__)
#include <posix/time.h> // Points to Zephyr toolchain posix time implementation
#include <version.h>
#if ZEPHYR_VERSION_CODE >= ZEPHYR_VERSION(3, 1, 0)
#include <zephyr/posix/time.h> // Points to Zephyr toolchain posix time implementation
#else
#include <time.h>
#endif // defined(__ZEPHYR__)
Expand Down

0 comments on commit 4213383

Please sign in to comment.