ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

lorenznew's profile - activity

2021-07-07 10:50:55 -0500 received badge  Famous Question (source)
2020-02-10 12:19:06 -0500 received badge  Guru (source)
2020-02-10 12:19:06 -0500 received badge  Great Answer (source)
2019-03-07 06:27:02 -0500 received badge  Famous Question (source)
2019-02-09 14:11:56 -0500 received badge  Famous Question (source)
2019-01-25 15:04:31 -0500 received badge  Famous Question (source)
2019-01-25 15:04:31 -0500 received badge  Notable Question (source)
2019-01-25 15:04:31 -0500 received badge  Popular Question (source)
2018-12-22 03:53:03 -0500 received badge  Famous Question (source)
2018-12-07 12:18:40 -0500 received badge  Notable Question (source)
2018-11-26 05:06:22 -0500 received badge  Enlightened (source)
2018-11-26 05:06:22 -0500 received badge  Good Answer (source)
2018-10-03 05:03:02 -0500 edited question Bad results with Gmapping

Bad results with Gmapping Hey everyone, I've got some trouble with gmapping. I'm Using a robot called "eddie" witch

2018-10-03 04:44:50 -0500 edited question Bad results with Gmapping

Bad results with Gmapping Hey everyone, I've got some trouble with gmapping. I'm Using a robot called "eddie" witch

2018-10-02 09:06:43 -0500 edited question Bad results with Gmapping

Bad results with Gmapping Hey everyone, I've got some trouble with gmapping. I'm Using a robot called "eddie" witch

2018-10-02 09:01:51 -0500 asked a question Bad results with Gmapping

Bad results with Gmapping Hey everyone, I've got some trouble with gmapping. I'm Using a robot called "eddie" witch

2018-10-02 09:01:51 -0500 received badge  Taxonomist
2018-09-30 09:46:50 -0500 commented question My hector-mapping will crash soon after start.

same problem here, any ideas?

2018-09-26 08:38:44 -0500 received badge  Famous Question (source)
2018-09-20 11:43:44 -0500 received badge  Notable Question (source)
2018-09-20 04:38:29 -0500 received badge  Popular Question (source)
2018-09-20 04:12:30 -0500 edited question Serial communication with multiple nodes

Serial communication with multiple nodes hey, I've got a short question. When i have two nodes, both want to communicat

2018-09-20 04:12:03 -0500 commented question Serial communication with multiple nodes

The Nodes are running on one PC and would like to communicate to external Hardware, such as a control board used for rea

2018-09-20 04:11:40 -0500 edited question Serial communication with multiple nodes

Serial communication with multiple nodes hey, I've got a short question. When i have two nodes, both want to communicat

2018-09-20 02:52:58 -0500 asked a question Serial communication with multiple nodes

Serial communication with multiple nodes hey, I've got a short question. When i have two nodes, both want to communicat

2018-09-14 17:16:58 -0500 marked best answer Navigation Stack and Odometry issue

Hello everyone,

I try to get the navigation Stack with gmapping running on my robot. The odometry and Gmapping are very good as long as I move the robot with my keyboard.

As soon as I give the first navigation goal, the robot starts moving, but the position in the map is not updated until move_base stops its navigation. Btw. the robot does not reach its goal, but the direction is right. So it seems like the controlling by the navigation stack does block the new odometry information.

I think that could happen because the serial connection to my hardware-control-board (which is controlling sensors+motors) cant handle the odometry and the navigation communication togther. Important to say is, that odometry and keyboard control are working fine together

So my question is: Is there a way to recuce the frequency of the cmd_vel msgs published by the navigation stack?

or does anyone have an other idea what could be wrong?!

thanks so much Lorenz

2018-09-14 17:15:35 -0500 received badge  Notable Question (source)
2018-09-13 04:53:50 -0500 received badge  Supporter (source)
2018-09-13 04:53:26 -0500 marked best answer rosserial: Permission denied

hello,

I had to re-install my Ubuntu 16.04 with kinetic for some reasons. How ever, I tried to re-install all the work I've done before on the project. All the workspaces where saved in my onwcloud, so i thought it should be an easy thing to do. Wrong :)

As I tried just to recompile the workspace with catkin_make everything failed an i tried to build from a new and clean workspace. There is a node that uses some serial communication,so i need to add the rosserial pkg to my system. First try by sudo apt-get install ros-kinetic-serial. then I did catkin_make. Everything fine so far. BUT when i start the node with rosrun an exeption ocoured:

IO Exception (13): Permission denied, file /tmp/binarydeb/ros-kinetic-serial-1.2.1/src/impl/unix.cc, line 151.

Just to check, i manually install the serial-pkg in my workspace and build both mith catkin. Now ther ist that error:

IO Exception (13): Permission denied, file /home/eddie/owncloud/eddie_ws/src/serial/src/impl/unix.cc, line 151.

which is basicly the same.

The piece of code with this revers to ist that: (l.151 is the default case)

void
Serial::SerialImpl::open ()
{
  if (port_.empty ()) {
    throw invalid_argument ("Empty port is invalid.");
  }
  if (is_open_ == true) {
    throw SerialException ("Serial port already open.");
  }

  fd_ = ::open (port_.c_str(), O_RDWR | O_NOCTTY | O_NONBLOCK);

  if (fd_ == -1) {
    switch (errno) {
    case EINTR:
      // Recurse because this is a recoverable error.
      open ();
      return;
    case ENFILE:
    case EMFILE:
      THROW (IOException, "Too many file handles open.");
    default:
      THROW (IOException, errno);
    }
  }

  reconfigurePort();
  is_open_ = true;
}

Does anyone has any ideas? thank you all! p.s. the hole thing worked very good before the re installation.

2018-09-13 01:14:10 -0500 received badge  Notable Question (source)
2018-09-12 09:48:00 -0500 received badge  Nice Answer (source)
2018-09-12 07:57:06 -0500 received badge  Famous Question (source)
2018-09-12 06:23:32 -0500 marked best answer Tf timeout with multiple machines

Hi! I try to get the navigation stack running on my robot. I've got ROS running on the robot and on an PC used for visualization in Rviz and, if possible, for calculation like gmapping.

Nodes i need: odometry_publisher; base_control; tf_broadcaster; rviz; gmapping; depth_to laserscan; freenect(kinect); move_base.

I tried to distribute the nodes on the two PC in so may different combinations. But i allways get the same problem:

When i start all the nodes on my robot like: Odometry_publisher, freenect(kinect) and base_control everything looks good. Then i start the rest of the nodes on the other PC.

In rviz it needs one minute until the laser scan in shown( before it tells that there is no transform from base_link to map). even if the laser scan is not visible in rviz, gmapping is building map After that minute all of my nodes work fine. the is tha map made by gmapping and all the sensordata is published.

BUT: Starting the Navigation stack produces that Warning and does nothing afterwards:

 [ WARN] [1532685774.079683838]: Timed out waiting for transform from base_link to map to become available before running costmap, tf error: Lookup would require extrapolation into the past.  Requested time 1532685692.802003361 but the earliest data is at time 1532685767.757000016, when looking up transform from frame [base_link] to frame [map]. Transform returned after 0.100864 timeout was 0.1.

btw i does make no change where the master runs I think my time is completely messed up. anyone an idea how to fix that?

thanks you so much!

2018-09-12 06:23:32 -0500 edited answer Tf timeout with multiple machines

Hello everyone! I got this working! As gvdhoorn sad, the machines where not in sync! To solve this: try ntpdate -q <

2018-09-12 03:36:00 -0500 commented question rosserial: Permission denied

WOW! nice! Thank you! I found the solution thanks to your comment! Just need to do: sudo adduser <second_user> dia