PX4-Autopilot/src/examples/segway/BlockSegwayController.cpp
Daniel Agar 2ad12d7977
sensors: create vehicle_angular_velocity module (#12596)
* split out filtered sensor_gyro aggregation from mc_att_control and move to wq:rate_ctrl
2019-08-06 12:55:25 -04:00

67 lines
1.8 KiB
C++

#include "BlockSegwayController.hpp"
using matrix::Eulerf;
using matrix::Quatf;
void BlockSegwayController::update()
{
// wait for a sensor update, check for exit condition every 100 ms
if (px4_poll(&_attPoll, 1, 100) < 0) { return; } // poll error
uint64_t newTimeStamp = hrt_absolute_time();
float dt = (newTimeStamp - _timeStamp) / 1.0e6f;
_timeStamp = newTimeStamp;
// check for sane values of dt
// to prevent large control responses
if (dt > 1.0f || dt < 0) { return; }
// set dt for all child blocks
setDt(dt);
// check for new updates
if (_param_update.updated()) { updateParams(); }
// get new information from subscriptions
updateSubscriptions();
actuator_controls_s &actuators = _actuators.get();
// default all output to zero unless handled by mode
for (unsigned i = 2; i < actuator_controls_s::NUM_ACTUATOR_CONTROLS; i++) {
actuators.control[i] = 0.0f;
}
const uint8_t &nav_state = _status.get().nav_state;
// only update guidance in auto mode
if (nav_state == vehicle_status_s::NAVIGATION_STATE_AUTO_MISSION) {
// update guidance
}
Eulerf euler = Eulerf(Quatf(_att.get().q));
// compute speed command
float spdCmd = -th2v.update(euler.theta()) - q2v.update(_angular_velocity.get().xyz[1]);
// handle autopilot modes
if (nav_state == vehicle_status_s::NAVIGATION_STATE_AUTO_MISSION ||
nav_state == vehicle_status_s::NAVIGATION_STATE_ALTCTL ||
nav_state == vehicle_status_s::NAVIGATION_STATE_POSCTL) {
actuators.control[0] = spdCmd;
actuators.control[1] = spdCmd;
} else if (nav_state == vehicle_status_s::NAVIGATION_STATE_STAB) {
actuators.control[0] = spdCmd;
actuators.control[1] = spdCmd;
} else if (nav_state == vehicle_status_s::NAVIGATION_STATE_MANUAL) {
actuators.control[CH_LEFT] = _manual.get().z;
actuators.control[CH_RIGHT] = -_manual.get().x;
}
// publish
_actuators.update();
}