PX4-Autopilot/src/drivers/cyphal/SubscriptionManager.cpp
Dmitry Ponomarev a1efafc42b
drivers/cyphal: incremental fixes for fmu-v5 (#20671)
* Cyphal: fix comparing floating-point issue

* Cyphal: fix setpoint serialization

* Cyphal: fix bug with wrong comparasion of param name and pub/sub name: remove prefix from UavcanPublisher::updateParam and UavcanDynamicPortSubscriber::updateParam and PublicationManager::updateDynamicPublications

* Cyphal: integrate UavcanEscController with PublicationManager, remove second instance of UavcanEscController from CyphalNode

* Cyphal: publish readiness with minimal frequency because according to UDRAL The drive shall enter STANDBY state automatically if the readiness subject is not updated for CONTROL_TIMEOUT

* Cyphal: increase setpoint publish rate from ~75 to 200 by removing PX4_INFO (it really significantly react on the the output rate) and changing the mixing output rate and the shedule interval

* Cyphal: restore prefix because we need it for uorb over uavcan/cyphal and add udral prefix for non uorb pub/sub

* Cyphal: fix DynamicPortSubscriber subscription: if it has multiple subscribers, it should call subscription only after updating of all port subscribers port identifiers

* Cyphal: fix SubscriptionManager: we should take care about prefix

* Cyphal: fix readiness for test motor mode

* [Cyphal] Fix dynamicsubscription, improve printinfo, enable MR-CANHUBK3 config

---------

Co-authored-by: Peter van der Perk <peter.vanderperk@nxp.com>
2023-02-23 10:57:50 -05:00

161 lines
4.5 KiB
C++

/****************************************************************************
*
* Copyright (c) 2021 PX4 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.
*
****************************************************************************/
/**
* @file SubscriptionManager.cpp
*
* Manages the UAVCAN subscriptions
*
* @author Peter van der Perk <peter.vanderperk@nxp.com>
*/
#include "SubscriptionManager.hpp"
#include "ParamManager.hpp"
SubscriptionManager::~SubscriptionManager()
{
UavcanDynamicPortSubscriber *dynsub;
while (_dynsubscribers != nullptr) {
dynsub = _dynsubscribers;
_dynsubscribers = dynsub->next();
delete dynsub;
}
}
void SubscriptionManager::subscribe()
{
_heartbeat_sub.subscribe();
#if CONFIG_CYPHAL_GETINFO_RESPONDER
_getinfo_rsp.subscribe();
#endif
_access_rsp.subscribe();
_list_rsp.subscribe();
updateDynamicSubscriptions();
}
void SubscriptionManager::updateDynamicSubscriptions()
{
for (auto &sub : _uavcan_subs) {
bool found_subscriber = false;
UavcanDynamicPortSubscriber *dynsub = _dynsubscribers;
while (dynsub != nullptr) {
// Check if subscriber has already been created
const char *subj_prefix = dynsub->getSubjectPrefix();
const char *subj_name = dynsub->getSubjectName();
const uint8_t instance = dynsub->getInstance();
char subject_name[90];
snprintf(subject_name, sizeof(subject_name), "%s%s", subj_prefix, subj_name);
if (strcmp(subject_name, sub.subject_name) == 0 && instance == sub.instance) {
found_subscriber = true;
break;
}
dynsub = dynsub->next();
}
if (found_subscriber) {
continue;
}
char uavcan_param[90];
snprintf(uavcan_param, sizeof(uavcan_param), "uavcan.sub.%s.%d.id", sub.subject_name, sub.instance);
uavcan_register_Value_1_0 value;
if (_param_manager.GetParamByName(uavcan_param, value)) {
uint16_t port_id = value.natural16.value.elements[0];
if (port_id <= CANARD_PORT_ID_MAX) { // PortID is set, create a subscriber
dynsub = sub.create_sub(_canard_handle, _param_manager);
if (dynsub == nullptr) {
PX4_ERR("Out of memory");
return;
}
if (_dynsubscribers == nullptr) {
// Set the head of our linked list
_dynsubscribers = dynsub;
} else {
// Append the new subscriber to our linked list
UavcanDynamicPortSubscriber *tmp = _dynsubscribers;
while (tmp->next() != nullptr) {
tmp = tmp->next();
}
tmp->setNext(dynsub);
}
dynsub->updateParam();
}
} else {
PX4_ERR("Port ID param for subscriber %s.%u not found", sub.subject_name, sub.instance);
return;
}
}
}
void SubscriptionManager::printInfo()
{
UavcanDynamicPortSubscriber *dynsub = _dynsubscribers;
while (dynsub != nullptr) {
dynsub->printInfo();
dynsub = dynsub->next();
}
}
void SubscriptionManager::updateParams()
{
UavcanDynamicPortSubscriber *dynsub = _dynsubscribers;
while (dynsub != nullptr) {
dynsub->updateParam();
dynsub = dynsub->next();
}
// Check for any newly-enabled subscriptions
updateDynamicSubscriptions();
}