Skip to content

Commit

Permalink
Update micro_ros_kaia.h
Browse files Browse the repository at this point in the history
  • Loading branch information
kaiaai authored Nov 24, 2023
1 parent 1b03d96 commit 64b9d12
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/micro_ros_kaia.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
#ifndef MICRO_ROS_KAIA
#define MICRO_ROS_KAIA

#define MICRO_ROS_KAIA_DISTRO rolling
#define MICRO_ROS_KAIA_VERSION_MAJOR 2
#define MICRO_ROS_KAIA_VERSION_MINOR 0
#define MICRO_ROS_KAIA_VERSION_PATCH 7
#define MICRO_ROS_KAIA_VERSION_BUILD 3
#define IS_MICRO_ROS_KAIA_MIN_VERSION(major,minor,patch,build) ( \
(MICRO_ROS_KAIA_VERSION_MAJOR >= major) && \
(MICRO_ROS_KAIA_VERSION_MINOR >= minor) && \
(MICRO_ROS_KAIA_VERSION_PATCH >= patch) && \
(MICRO_ROS_KAIA_VERSION_BUILD >= build))

#include <micro_ros_arduino.h>

#endif
#endif

0 comments on commit 64b9d12

Please sign in to comment.