forked from micro-ROS/micro_ros_arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
12 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 iron | ||
#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 |