ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
1 | initial version |
This can be fixed by following the instructions from this website.
https://eleccelerator.com/wiki/index.php?title=Raspbian_Buster_ROS_RealSense#Problem:_logWarn_or_logError_not_declared_in_scope
2 | No.2 Revision |
This can be fixed by following the instructions from this website.
https://eleccelerator.com/wiki/index.php?title=Raspbian_Buster_ROS_RealSense#Problem:_logWarn_or_logError_not_declared_in_scope
Specifically, add this to the preprocessor.
#ifndef logError // added by frank26080115
#define logError CONSOLE_BRIDGE_logError
#endif
#ifndef logWarn // added by frank26080115
#define logWarn CONSOLE_BRIDGE_logWarn
#endif
3 | No.3 Revision |
This can be fixed by following the instructions from this website.
https://eleccelerator.com/wiki/index.php?title=Raspbian_Buster_ROS_RealSense#Problem:_logWarn_or_logError_not_declared_in_scope
Specifically, add this to the preprocessor.preprocessor of the buffer_core.cpp.
#ifndef logError // added by frank26080115
#define logError CONSOLE_BRIDGE_logError
#endif
#ifndef logWarn // added by frank26080115
#define logWarn CONSOLE_BRIDGE_logWarn
#endif