1
0
mirror of https://gitlab.com/obbart/universal_robots_ros_driver.git synced 2026-04-12 11:00:47 +02:00

renamed package

This commit is contained in:
Felix Mauch
2019-04-01 11:05:30 +02:00
parent 1f5d04b947
commit f34422f32b
74 changed files with 180 additions and 372 deletions

View File

@@ -18,7 +18,7 @@
* limitations under the License.
*/
#include "ur_modern_driver/ros/action_server.h"
#include "ur_rtde_driver/ros/action_server.h"
#include <cmath>
ActionServer::ActionServer(ActionTrajectoryFollowerInterface& follower, std::vector<std::string>& joint_names,

View File

@@ -16,7 +16,7 @@
* limitations under the License.
*/
#include "ur_modern_driver/ros/controller.h"
#include "ur_rtde_driver/ros/controller.h"
ROSController::ROSController(URCommander& commander, TrajectoryFollower& follower,
std::vector<std::string>& joint_names, double max_vel_change, std::string tcp_link)

View File

@@ -16,8 +16,8 @@
* limitations under the License.
*/
#include "ur_modern_driver/ros/hardware_interface.h"
#include "ur_modern_driver/log.h"
#include "ur_rtde_driver/ros/hardware_interface.h"
#include "ur_rtde_driver/log.h"
const std::string JointInterface::INTERFACE_NAME = "hardware_interface::JointStateInterface";
JointInterface::JointInterface(std::vector<std::string> &joint_names)

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
#include "ur_modern_driver/ros/lowbandwidth_trajectory_follower.h"
#include "ur_rtde_driver/ros/lowbandwidth_trajectory_follower.h"
#include <endian.h>
#include <ros/ros.h>
#include <cmath>

View File

@@ -16,7 +16,7 @@
* limitations under the License.
*/
#include "ur_modern_driver/ros/mb_publisher.h"
#include "ur_rtde_driver/ros/mb_publisher.h"
inline void appendAnalog(std::vector<ur_msgs::Analog>& vec, double val, uint8_t pin)
{

View File

@@ -16,7 +16,7 @@
* limitations under the License.
*/
#include "ur_modern_driver/ros/rt_publisher.h"
#include "ur_rtde_driver/ros/rt_publisher.h"
bool RTPublisher::publishJoints(RTShared& packet, Time& t)
{

View File

@@ -16,7 +16,7 @@
* limitations under the License.
*/
#include "ur_modern_driver/ros/service_stopper.h"
#include "ur_rtde_driver/ros/service_stopper.h"
ServiceStopper::ServiceStopper(std::vector<Service*> services)
: enable_service_(nh_.advertiseService("ur_driver/robot_enable", &ServiceStopper::enableCallback, this))

View File

@@ -16,7 +16,7 @@
* limitations under the License.
*/
#include "ur_modern_driver/ros/trajectory_follower.h"
#include "ur_rtde_driver/ros/trajectory_follower.h"
#include <endian.h>
#include <ros/ros.h>
#include <cmath>

View File

@@ -16,8 +16,8 @@
* limitations under the License.
*/
#include "ur_modern_driver/ros/urscript_handler.h"
#include "ur_modern_driver/log.h"
#include "ur_rtde_driver/ros/urscript_handler.h"
#include "ur_rtde_driver/log.h"
URScriptHandler::URScriptHandler(URCommander& commander) : commander_(commander), state_(RobotState::Error)
{

View File

@@ -24,24 +24,24 @@
#include <string>
#include <thread>
#include "ur_modern_driver/log.h"
#include "ur_modern_driver/pipeline.h"
#include "ur_modern_driver/ros/action_server.h"
#include "ur_modern_driver/ros/controller.h"
#include "ur_modern_driver/ros/io_service.h"
#include "ur_modern_driver/ros/lowbandwidth_trajectory_follower.h"
#include "ur_modern_driver/ros/mb_publisher.h"
#include "ur_modern_driver/ros/rt_publisher.h"
#include "ur_modern_driver/ros/service_stopper.h"
#include "ur_modern_driver/ros/trajectory_follower.h"
#include "ur_modern_driver/ros/urscript_handler.h"
#include "ur_modern_driver/ur/commander.h"
#include "ur_modern_driver/ur/factory.h"
#include "ur_modern_driver/ur/messages.h"
#include "ur_modern_driver/ur/parser.h"
#include "ur_modern_driver/ur/producer.h"
#include "ur_modern_driver/ur/rt_state.h"
#include "ur_modern_driver/ur/state.h"
#include "ur_rtde_driver/log.h"
#include "ur_rtde_driver/pipeline.h"
#include "ur_rtde_driver/ros/action_server.h"
#include "ur_rtde_driver/ros/controller.h"
#include "ur_rtde_driver/ros/io_service.h"
#include "ur_rtde_driver/ros/lowbandwidth_trajectory_follower.h"
#include "ur_rtde_driver/ros/mb_publisher.h"
#include "ur_rtde_driver/ros/rt_publisher.h"
#include "ur_rtde_driver/ros/service_stopper.h"
#include "ur_rtde_driver/ros/trajectory_follower.h"
#include "ur_rtde_driver/ros/urscript_handler.h"
#include "ur_rtde_driver/ur/commander.h"
#include "ur_rtde_driver/ur/factory.h"
#include "ur_rtde_driver/ur/messages.h"
#include "ur_rtde_driver/ur/parser.h"
#include "ur_rtde_driver/ur/producer.h"
#include "ur_rtde_driver/ur/rt_state.h"
#include "ur_rtde_driver/ur/state.h"
static const std::string IP_ADDR_ARG("~robot_ip_address");
static const std::string REVERSE_PORT_ARG("~reverse_port");

View File

@@ -24,8 +24,8 @@
#include <unistd.h>
#include <cstring>
#include "ur_modern_driver/log.h"
#include "ur_modern_driver/tcp_socket.h"
#include "ur_rtde_driver/log.h"
#include "ur_rtde_driver/tcp_socket.h"
TCPSocket::TCPSocket() : socket_fd_(-1), state_(SocketState::Invalid)
{

View File

@@ -16,8 +16,8 @@
* limitations under the License.
*/
#include "ur_modern_driver/ur/commander.h"
#include "ur_modern_driver/log.h"
#include "ur_rtde_driver/ur/commander.h"
#include "ur_rtde_driver/log.h"
bool URCommander::write(const std::string &s)
{

View File

@@ -16,8 +16,8 @@
* limitations under the License.
*/
#include "ur_modern_driver/ur/master_board.h"
#include "ur_modern_driver/ur/consumer.h"
#include "ur_rtde_driver/ur/master_board.h"
#include "ur_rtde_driver/ur/consumer.h"
bool SharedMasterBoardData::parseWith(BinParser& bp)
{

View File

@@ -16,8 +16,8 @@
* limitations under the License.
*/
#include "ur_modern_driver/ur/messages.h"
#include "ur_modern_driver/ur/consumer.h"
#include "ur_rtde_driver/ur/messages.h"
#include "ur_rtde_driver/ur/consumer.h"
bool VersionMessage::parseWith(BinParser& bp)
{

View File

@@ -16,8 +16,8 @@
* limitations under the License.
*/
#include "ur_modern_driver/ur/robot_mode.h"
#include "ur_modern_driver/ur/consumer.h"
#include "ur_rtde_driver/ur/robot_mode.h"
#include "ur_rtde_driver/ur/consumer.h"
bool SharedRobotModeData::parseWith(BinParser& bp)
{

View File

@@ -16,8 +16,8 @@
* limitations under the License.
*/
#include "ur_modern_driver/ur/rt_state.h"
#include "ur_modern_driver/ur/consumer.h"
#include "ur_rtde_driver/ur/rt_state.h"
#include "ur_rtde_driver/ur/consumer.h"
void RTShared::parse_shared1(BinParser& bp)
{

View File

@@ -18,12 +18,12 @@
* limitations under the License.
*/
#include "ur_modern_driver/ur/server.h"
#include "ur_rtde_driver/ur/server.h"
#include <arpa/inet.h>
#include <netinet/tcp.h>
#include <unistd.h>
#include <cstring>
#include "ur_modern_driver/log.h"
#include "ur_rtde_driver/log.h"
URServer::URServer(int port) : port_(port)
{

View File

@@ -21,8 +21,8 @@
#include <unistd.h>
#include <cstring>
#include "ur_modern_driver/log.h"
#include "ur_modern_driver/ur/stream.h"
#include "ur_rtde_driver/log.h"
#include "ur_rtde_driver/ur/stream.h"
bool URStream::write(const uint8_t* buf, size_t buf_len, size_t& written)
{