The Wayback Machine - http://web.archive.org/web/20201009031411/https://github.com/topics/ros
Skip to content
#

ros

Here are 4,096 public repositories matching this topic...

ardupilot
peterbarker
peterbarker commented Sep 29, 2020

Feature request

Is your feature request related to a problem? Please describe.
When we raise an internal error it may be quite some time before we get something in the dataflash log or in the mavlink stream. This makes it harder to correlate internal errors with codepaths.

Describe the solution you'd like
Emit a statustext and/or log message when we detect an internal error has

SungYinYang
SungYinYang commented Jun 17, 2020

Hi, I got a problem similar to #804.

My bridge did not connect correctly.
I have followed the latest tutorial and build Apollo successfully today.
My apollo did not connect in the following step.

Launch bridge (inside docker container):
./scripts/bridge.sh

I would need to add sudo in order to start my bridge.sh.
After adding that, there was no information print out from the terminal.

chenxianbo
chenxianbo commented Aug 30, 2018
void AStarExpansion::add(unsigned char* costs, float* potential, float prev_potential, int next_i, int end_x,  int end_y)
{
    .........
    if(costs[next_i]>=lethal_cost_ && !(unknown_ && costs[next_i]==costmap_2d::NO_INFORMATION))
        return;
    potential[next_i] = p_calc_->calculatePotential(potential, costs[next_i] + neutral_cost_, next_i, prev_potential);
     .......
}
webots
Justin-Fisher
Justin-Fisher commented Oct 3, 2020

It is good that supervisor.getFromDef will seek out a node with the given DEF-name at any level of the scene tree. So, e.g., if I have one robot with a solid LEFT_WHEEL, I can use getFromDef('LEFT_WHEEL') to get that node, without needing to worry about whatever intervening ancestor nodes might lie above it.

Sometimes you'll have multiple nodes with the same DEF-name in the scene tree, e.g., i

Improve this page

Add a description, image, and links to the ros topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the ros topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.