Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Removed Functionality: Remove collision avoidance interface on PX4 side #24172

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -404,7 +404,7 @@ check_newlines:

# Testing
# --------------------------------------------------------------------
.PHONY: tests tests_coverage tests_mission tests_mission_coverage tests_offboard tests_avoidance
.PHONY: tests tests_coverage tests_mission tests_mission_coverage tests_offboard
.PHONY: rostest python_coverage

tests:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,3 @@ param set-default PWM_MAIN_FUNC1 101
param set-default PWM_MAIN_FUNC2 102
param set-default PWM_MAIN_FUNC3 103
param set-default PWM_MAIN_FUNC4 104

param set-default COM_OBS_AVOID 1
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ param set-default SENS_EN_BAROSIM 0
param set-default SENS_EN_MAGSIM 1

# Commander Parameters
param set-default COM_OBS_AVOID 0
param set-default COM_DISARM_LAND 0.5

# EKF2 parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
. ${R}etc/init.d/rc.mc_defaults

# Commander Parameters
param set-default COM_OBS_AVOID 1
param set-default COM_DISARM_LAND 0.5

# EKF2 parameters
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
. ${R}etc/init.d/rc.mc_defaults

# Commander Parameters
param set-default COM_OBS_AVOID 1
param set-default COM_DISARM_LAND 0.5

# EKF2 parameters
Expand Down
2 changes: 0 additions & 2 deletions msg/PositionControllerStatus.msg
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,4 @@ float32 target_bearing # Bearing angle from aircraft to current target [rad]
float32 xtrack_error # Signed track error [m]
float32 wp_dist # Distance to active (next) waypoint [m]
float32 acceptance_radius # Current horizontal acceptance radius [m]
float32 yaw_acceptance # Yaw acceptance error[rad]
float32 altitude_acceptance # Current vertical acceptance error [m]
uint8 type # Current (applied) position setpoint type (see PositionSetpoint.msg)
3 changes: 0 additions & 3 deletions msg/versioned/VehicleStatus.msg
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,6 @@ bool open_drone_id_system_healthy
bool parachute_system_present
bool parachute_system_healthy

bool avoidance_system_required # Set to true if avoidance system is enabled via COM_OBS_AVOID parameter
bool avoidance_system_valid # Status of the obstacle avoidance system

bool rc_calibration_in_progress
bool calibration_enabled

Expand Down
1 change: 0 additions & 1 deletion src/lib/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
add_subdirectory(adsb EXCLUDE_FROM_ALL)
add_subdirectory(airspeed EXCLUDE_FROM_ALL)
add_subdirectory(atmosphere EXCLUDE_FROM_ALL)
add_subdirectory(avoidance EXCLUDE_FROM_ALL)
add_subdirectory(battery EXCLUDE_FROM_ALL)
add_subdirectory(bezier EXCLUDE_FROM_ALL)
add_subdirectory(button EXCLUDE_FROM_ALL)
Expand Down
39 changes: 0 additions & 39 deletions src/lib/avoidance/CMakeLists.txt

This file was deleted.

271 changes: 0 additions & 271 deletions src/lib/avoidance/ObstacleAvoidance.cpp

This file was deleted.

Loading
Loading