Skip to content

Commit ea41de9

Browse files
Merge pull request #717 from nasa/develop
Release 0.17.1
2 parents c46f8b1 + 36f5104 commit ea41de9

File tree

137 files changed

+511
-251
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

137 files changed

+511
-251
lines changed

.isort.cfg

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
[settings]
2+
3+
# The src_paths setting should be a comma-separated list of all the
4+
# folders in the astrobee repo that contain *.py files. Python files
5+
# found in these folders count as "first party" so they should be in a
6+
# separate group from the "third party" imports. If src_paths is not
7+
# specified, isort will treat only the files it's asked to check as
8+
# first party. Therefore, if we specify src_paths broadly in this way,
9+
# isort behavior should be more repeatable between (1) manually
10+
# running isort on a single file in your local dev machine, vs. (2)
11+
# running the git pre-commit hook locally on your dev machine, which
12+
# historically ran isort only on the files that changed since the last
13+
# commit, or (3) running the CI workflow, which always runs isort on
14+
# all files. If src_paths needs to be updated, like if *.py files are
15+
# added to a new folder, you can auto-update it by running
16+
# scripts/git/configure_isort_paths.sh.
17+
18+
src_paths = doc/scripts,hardware/eps_driver/tools,hardware/pico_driver/scripts,hardware/pmc_actuator/tools,localization/localization_common,localization/localization_common/scripts/localization_common,localization/marker_tracking/tools/marker_tracking_node,localization/sparse_mapping/scripts,localization/sparse_mapping/tools,scripts/build,scripts/calibrate,scripts/debug,scripts/git,scripts/postprocessing/coverage_analysis,tools/bag_processing/scripts,tools/bag_processing/scripts/utilities,tools/bag_processing/test,tools/calibration/scripts,tools/gds_helper/src,tools/gnc_visualizer/dds,tools/gnc_visualizer/scripts,tools/gnc_visualizer/scripts/communications,tools/localization_analysis/scripts,tools/performance_tester/scripts

RELEASE.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Releases
22

3+
# Release 0.17.1
4+
5+
* Multiple bug fixes
6+
37
# Release 0.17.0
48

59
* Full compatibility and debians built for Ubuntu 20

astrobee.doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ PROJECT_NAME = "NASA Astrobee Robot Software"
3939
# control system is used.
4040

4141

42-
PROJECT_NUMBER = 0.17.0
42+
PROJECT_NUMBER = 0.17.1
4343

4444
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4545
# for a project that appears at the top of each page and should give viewer a

astrobee/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
cmake_minimum_required(VERSION 3.0)
1919
project(astrobee)
2020

21-
set(ASTROBEE_VERSION 0.17.0)
21+
set(ASTROBEE_VERSION 0.17.1)
2222

2323
## Compile as C++14, supported in ROS Kinetic and newer
2424
add_compile_options(-std=c++14)

astrobee/launch/robot/MLP.launch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
<include file="$(find ff_util)/launch/ff_nodelet.launch">
9090
<arg name="class" value="depth_odometry/DepthOdometryNodelet" />
9191
<arg name="name" value="depth_odometry_nodelet" />
92-
<arg name="manager" value="mlp_vision" />
92+
<arg name="manager" value="mlp_depth_cam" />
9393
<arg name="spurn" value="$(arg spurn)" />
9494
<arg name="nodes" value="$(arg nodes)" />
9595
<arg name="extra" value="$(arg extra)" />

behaviors/arm/tools/arm_tool.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
// Include RPOS
2424
#include <ros/ros.h>
2525
// FSW includes
26-
#include <ff_util/ff_names.h>
26+
#include <ff_common/ff_names.h>
2727
#include <ff_util/ff_action.h>
2828
#include <ff_util/config_client.h>
2929

behaviors/dock/tools/dock_tool.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
#include <ros/ros.h>
2525

2626
// FSW includes
27-
#include <ff_util/ff_names.h>
27+
#include <ff_common/ff_names.h>
2828
#include <ff_util/ff_action.h>
2929

3030
// Action

behaviors/light_flow/include/light_flow.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#define LIGHT_FLOW_H_
2121

2222
#include <ff_hw_msgs/ConfigureLED.h>
23-
#include <ff_util/ff_names.h>
23+
#include <ff_common/ff_names.h>
2424
#include <jsoncpp/json/value.h>
2525
#include <ros/ros.h>
2626
#include <stdio.h>

behaviors/light_flow/src/light_flow/light_flow.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
#include <assert.h>
2121
#include <ff_hw_msgs/ConfigureLED.h>
2222
#include <ff_hw_msgs/ConfigureLEDGroup.h>
23-
#include <ff_util/ff_names.h>
23+
#include <ff_common/ff_names.h>
2424
#include <jsoncpp/json/allocator.h>
2525
#include <jsoncpp/json/json.h>
2626
#include <jsoncpp/json/value.h>

behaviors/light_flow/src/light_flow_nodelet/light_flow_nodelet.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
#include <config_reader/config_reader.h>
3333

3434
// FSW nodelet
35-
#include <ff_util/ff_names.h>
35+
#include <ff_common/ff_names.h>
3636
#include <ff_util/ff_nodelet.h>
3737

3838
// Services

0 commit comments

Comments
 (0)