mirror of
https://gitee.com/xiaohuolufeihua/bizhang_-obav.git
synced 2026-05-21 09:22:18 +00:00
103 lines
1.9 KiB
C++
103 lines
1.9 KiB
C++
|
|
#include "subscriber_handler.h"
|
|
|
|
#include <px4_log.h>
|
|
|
|
namespace events
|
|
{
|
|
|
|
void SubscriberHandler::subscribe()
|
|
{
|
|
if (_battery_status_sub < 0) {
|
|
_battery_status_sub = orb_subscribe(ORB_ID(battery_status));
|
|
}
|
|
|
|
if (_cpuload_sub < 0) {
|
|
_cpuload_sub = orb_subscribe(ORB_ID(cpuload));
|
|
}
|
|
|
|
if (_vehicle_command_sub < 0) {
|
|
_vehicle_command_sub = orb_subscribe(ORB_ID(vehicle_command));
|
|
}
|
|
|
|
if (_vehicle_status_sub < 0) {
|
|
_vehicle_status_sub = orb_subscribe(ORB_ID(vehicle_status));
|
|
}
|
|
|
|
if (_vehicle_status_flags_sub < 0) {
|
|
_vehicle_status_flags_sub = orb_subscribe(ORB_ID(vehicle_status_flags));
|
|
}
|
|
|
|
}
|
|
|
|
void SubscriberHandler::unsubscribe()
|
|
{
|
|
if (_battery_status_sub >= 0) {
|
|
orb_unsubscribe(_battery_status_sub);
|
|
_battery_status_sub = -1;
|
|
}
|
|
|
|
if (_cpuload_sub >= 0) {
|
|
orb_unsubscribe(_cpuload_sub);
|
|
_cpuload_sub = -1;
|
|
}
|
|
|
|
if (_vehicle_command_sub >= 0) {
|
|
orb_unsubscribe(_vehicle_command_sub);
|
|
_vehicle_command_sub = -1;
|
|
}
|
|
|
|
if (_vehicle_status_sub >= 0) {
|
|
orb_unsubscribe(_vehicle_status_sub);
|
|
_vehicle_status_sub = -1;
|
|
}
|
|
|
|
if (_vehicle_status_flags_sub >= 0) {
|
|
orb_unsubscribe(_vehicle_status_flags_sub);
|
|
_vehicle_status_flags_sub = -1;
|
|
}
|
|
|
|
}
|
|
|
|
void SubscriberHandler::check_for_updates()
|
|
{
|
|
bool updated;
|
|
_update_bitfield = 0;
|
|
orb_check(_vehicle_command_sub, &updated);
|
|
|
|
if (updated) {
|
|
_update_bitfield |= (uint32_t)StatusMask::VehicleCommand;
|
|
}
|
|
|
|
updated = false;
|
|
orb_check(_vehicle_status_sub, &updated);
|
|
|
|
if (updated) {
|
|
_update_bitfield |= (uint32_t)StatusMask::VehicleStatus;
|
|
}
|
|
|
|
updated = false;
|
|
orb_check(_vehicle_status_flags_sub, &updated);
|
|
|
|
if (updated) {
|
|
_update_bitfield |= (uint32_t)StatusMask::VehicleStatusFlags;
|
|
}
|
|
|
|
updated = false;
|
|
orb_check(_battery_status_sub, &updated);
|
|
|
|
if (updated) {
|
|
_update_bitfield |= (uint32_t)StatusMask::BatteryStatus;
|
|
}
|
|
|
|
updated = false;
|
|
orb_check(_cpuload_sub, &updated);
|
|
|
|
if (updated) {
|
|
_update_bitfield |= (uint32_t)StatusMask::CpuLoad;
|
|
}
|
|
|
|
}
|
|
|
|
} /* namespace events */
|