This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
-
-
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.
Rename from "t07_ros" to "t07_robot.
- Loading branch information
Showing
10 changed files
with
28 additions
and
29 deletions.
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
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,7 +1,7 @@ | ||
/** | ||
* Copyright (c) 2022 LXRobotics GmbH. | ||
* Author: Alexander Entinger <[email protected]> | ||
* Contributors: https://github.com/107-systems/ros2_cyphal_bridge/graphs/contributors. | ||
* Contributors: https://github.com/107-systems/t07_robot/graphs/contributors. | ||
*/ | ||
|
||
#pragma once | ||
|
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,7 +1,7 @@ | ||
/** | ||
* Copyright (c) 2023 LXRobotics GmbH. | ||
* Author: Alexander Entinger <[email protected]> | ||
* Contributors: https://github.com/107-systems/t07_ros/graphs/contributors. | ||
* Contributors: https://github.com/107-systems/t07_robot/graphs/contributors. | ||
*/ | ||
|
||
#pragma once | ||
|
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,7 +1,7 @@ | ||
<?xml version="1.0"?> | ||
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>t07_ros</name> | ||
<name>t07_robot</name> | ||
<version>1.0.0</version> | ||
<description>ROS control code for the T07 robot.</description> | ||
<maintainer email="[email protected]">alex</maintainer> | ||
|
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,14 +1,14 @@ | ||
/** | ||
* Copyright (c) 2022 LXRobotics GmbH. | ||
* Author: Alexander Entinger <[email protected]> | ||
* Contributors: https://github.com/107-systems/ros2_cyphal_bridge/graphs/contributors. | ||
* Contributors: https://github.com/107-systems/t07_robot/graphs/contributors. | ||
*/ | ||
|
||
/************************************************************************************** | ||
* INCLUDES | ||
**************************************************************************************/ | ||
|
||
#include <t07_ros/CanManager.h> | ||
#include <t07_robot/CanManager.h> | ||
|
||
#include <unistd.h> | ||
|
||
|
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,14 +1,14 @@ | ||
/** | ||
* Copyright (c) 2023 LXRobotics GmbH. | ||
* Author: Alexander Entinger <[email protected]> | ||
* Contributors: https://github.com/107-systems/t07_ros/graphs/contributors. | ||
* Contributors: https://github.com/107-systems/t07_robot/graphs/contributors. | ||
*/ | ||
|
||
/************************************************************************************** | ||
* INCLUDE | ||
**************************************************************************************/ | ||
|
||
#include <t07_ros/Node.h> | ||
#include <t07_robot/Node.h> | ||
|
||
/************************************************************************************** | ||
* NAMESPACE | ||
|
@@ -22,7 +22,7 @@ namespace t07 | |
**************************************************************************************/ | ||
|
||
Node::Node() | ||
: rclcpp::Node("t07_ros_node") | ||
: rclcpp::Node("t07_robot_node") | ||
, _node_heap{} | ||
, _node_hdl{_node_heap.data(), | ||
_node_heap.size(), | ||
|
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,7 +1,7 @@ | ||
/** | ||
* Copyright (c) 2023 LXRobotics GmbH. | ||
* Author: Alexander Entinger <[email protected]> | ||
* Contributors: https://github.com/107-systems/t07_ros/graphs/contributors. | ||
* Contributors: https://github.com/107-systems/t07_robot/graphs/contributors. | ||
*/ | ||
|
||
/************************************************************************************** | ||
|
@@ -10,7 +10,7 @@ | |
|
||
#include <rclcpp/rclcpp.hpp> | ||
|
||
#include <t07_ros/Node.h> | ||
#include <t07_robot/Node.h> | ||
|
||
/************************************************************************************** | ||
* MAIN | ||
|