-
Notifications
You must be signed in to change notification settings - Fork 13.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Expand test framework and test cases (#685)
* Fix comment * Ekf wrapper for testing Add utility function for accessing information in the ekf object * Add step function for Gps sensor * Add RangeFinder and Flow to simulated sensors * Add first fusion logic tests * Add units to function name * Use EXPECT_TRUE * Adding missing qualifiers * Improve EXPECT_ calls * Improve naming
- Loading branch information
Showing
23 changed files
with
680 additions
and
116 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
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 |
---|---|---|
@@ -0,0 +1,71 @@ | ||
#include "ekf_wrapper.h" | ||
|
||
EkfWrapper::EkfWrapper(std::shared_ptr<Ekf> ekf): | ||
_ekf{ekf} | ||
{ | ||
_ekf_params = _ekf->getParamHandle(); | ||
} | ||
|
||
EkfWrapper::~EkfWrapper() | ||
{ | ||
} | ||
|
||
void EkfWrapper::enableGpsFusion() | ||
{ | ||
_ekf_params->fusion_mode |= MASK_USE_GPS; | ||
} | ||
|
||
void EkfWrapper::disableGpsFusion() | ||
{ | ||
_ekf_params->fusion_mode &= ~MASK_USE_GPS; | ||
} | ||
|
||
bool EkfWrapper::isIntendingGpsFusion() const | ||
{ | ||
filter_control_status_u control_status; | ||
_ekf->get_control_mode(&control_status.value); | ||
return control_status.flags.gps; | ||
} | ||
|
||
void EkfWrapper::enableFlowFusion() | ||
{ | ||
_ekf_params->fusion_mode |= MASK_USE_OF; | ||
} | ||
|
||
void EkfWrapper::disableFlowFusion() | ||
{ | ||
_ekf_params->fusion_mode &= ~MASK_USE_OF; | ||
} | ||
|
||
bool EkfWrapper::isIntendingFlowFusion() const | ||
{ | ||
filter_control_status_u control_status; | ||
_ekf->get_control_mode(&control_status.value); | ||
return control_status.flags.opt_flow; | ||
} | ||
|
||
Vector3f EkfWrapper::getPosition() const | ||
{ | ||
float temp[3]; | ||
_ekf->get_position(temp); | ||
return Vector3f(temp); | ||
} | ||
Vector3f EkfWrapper::getVelocity() const | ||
{ | ||
float temp[3]; | ||
_ekf->get_velocity(temp); | ||
return Vector3f(temp); | ||
} | ||
Vector3f EkfWrapper::getAccelBias() const | ||
{ | ||
float temp[3]; | ||
_ekf->get_accel_bias(temp); | ||
return Vector3f(temp); | ||
} | ||
|
||
Vector3f EkfWrapper::getGyroBias() const | ||
{ | ||
float temp[3]; | ||
_ekf->get_gyro_bias(temp); | ||
return Vector3f(temp); | ||
} |
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 |
---|---|---|
@@ -0,0 +1,74 @@ | ||
/**************************************************************************** | ||
* | ||
* Copyright (c) 2019 ECL Development Team. All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: | ||
* | ||
* 1. Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* 2. Redistributions in binary form must reproduce the above copyright | ||
* notice, this list of conditions and the following disclaimer in | ||
* the documentation and/or other materials provided with the | ||
* distribution. | ||
* 3. Neither the name PX4 nor the names of its contributors may be | ||
* used to endorse or promote products derived from this software | ||
* without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | ||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | ||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
* POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
****************************************************************************/ | ||
|
||
/** | ||
* Wrapper class for Ekf object to set behavior or check status | ||
* @author Kamil Ritz <ka.ritz@hotmail.com> | ||
*/ | ||
#pragma once | ||
|
||
#include <memory> | ||
#include "EKF/ekf.h" | ||
#include "EKF/estimator_interface.h" | ||
|
||
class EkfWrapper | ||
{ | ||
public: | ||
EkfWrapper(std::shared_ptr<Ekf> ekf); | ||
~EkfWrapper(); | ||
|
||
void enableGpsFusion(); | ||
|
||
void disableGpsFusion(); | ||
|
||
bool isIntendingGpsFusion() const; | ||
|
||
void enableFlowFusion(); | ||
|
||
void disableFlowFusion(); | ||
|
||
bool isIntendingFlowFusion() const; | ||
|
||
Vector3f getPosition() const; | ||
Vector3f getVelocity() const; | ||
Vector3f getAccelBias() const; | ||
Vector3f getGyroBias() const; | ||
|
||
|
||
private: | ||
std::shared_ptr<Ekf> _ekf; | ||
|
||
// Pointer to Ekf internal param struct | ||
parameters* _ekf_params; | ||
|
||
}; |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
#include "flow.h" | ||
|
||
namespace sensor_simulator | ||
{ | ||
namespace sensor | ||
{ | ||
|
||
Flow::Flow(std::shared_ptr<Ekf> ekf):Sensor(ekf) | ||
{ | ||
} | ||
|
||
Flow::~Flow() | ||
{ | ||
} | ||
|
||
void Flow::send(uint32_t time) | ||
{ | ||
_ekf->setOpticalFlowData(time, &_flow_data); | ||
} | ||
|
||
void Flow::setData(const flow_message& flow) | ||
{ | ||
_flow_data = flow; | ||
|
||
} | ||
|
||
flow_message Flow::dataAtRest() | ||
{ | ||
flow_message _flow_at_rest; | ||
_flow_at_rest.dt = 20000; | ||
_flow_at_rest.flowdata = Vector2f{0.0f, 0.0f}; | ||
_flow_at_rest.gyrodata = Vector3f{0.0f, 0.0f, 0.0f}; | ||
_flow_at_rest.quality = 255; | ||
return _flow_at_rest; | ||
} | ||
|
||
} // namespace sensor | ||
} // namespace sensor_simulator |
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 |
---|---|---|
@@ -0,0 +1,64 @@ | ||
/**************************************************************************** | ||
* | ||
* Copyright (c) 2019 ECL Development Team. All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: | ||
* | ||
* 1. Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* 2. Redistributions in binary form must reproduce the above copyright | ||
* notice, this list of conditions and the following disclaimer in | ||
* the documentation and/or other materials provided with the | ||
* distribution. | ||
* 3. Neither the name PX4 nor the names of its contributors may be | ||
* used to endorse or promote products derived from this software | ||
* without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS | ||
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED | ||
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
* POSSIBILITY OF SUCH DAMAGE. | ||
* | ||
****************************************************************************/ | ||
|
||
/** | ||
* Feeds Ekf with optical flow data | ||
* @author Kamil Ritz <ka.ritz@hotmail.com> | ||
*/ | ||
#pragma once | ||
|
||
#include "sensor.h" | ||
|
||
namespace sensor_simulator | ||
{ | ||
namespace sensor | ||
{ | ||
|
||
class Flow: public Sensor | ||
{ | ||
public: | ||
Flow(std::shared_ptr<Ekf> ekf); | ||
~Flow(); | ||
|
||
void setData(const flow_message& flow); | ||
flow_message dataAtRest(); | ||
|
||
private: | ||
flow_message _flow_data; | ||
|
||
void send(uint32_t time) override; | ||
|
||
}; | ||
|
||
} // namespace sensor | ||
} // namespace sensor_simulator |
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
Oops, something went wrong.