You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
488 lines
17 KiB
488 lines
17 KiB
10 years ago
|
/****************************************************************************
|
||
|
*
|
||
|
* Copyright (c) 2012-2015 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.
|
||
|
*
|
||
|
****************************************************************************/
|
||
|
|
||
|
#ifndef _uORBManager_hpp_
|
||
|
#define _uORBManager_hpp_
|
||
|
|
||
|
#include "uORBCommon.hpp"
|
||
7 years ago
|
#include "uORBDeviceMaster.hpp"
|
||
|
|
||
10 years ago
|
#include <stdint.h>
|
||
7 years ago
|
|
||
10 years ago
|
#ifdef __PX4_NUTTX
|
||
10 years ago
|
#include "ORBSet.hpp"
|
||
10 years ago
|
#else
|
||
|
#include <string>
|
||
10 years ago
|
#include <set>
|
||
10 years ago
|
#define ORBSet std::set<std::string>
|
||
|
#endif
|
||
10 years ago
|
|
||
7 years ago
|
#ifdef ORB_COMMUNICATOR
|
||
10 years ago
|
#include "uORBCommunicator.hpp"
|
||
7 years ago
|
#endif /* ORB_COMMUNICATOR */
|
||
10 years ago
|
|
||
|
namespace uORB
|
||
|
{
|
||
10 years ago
|
class Manager;
|
||
10 years ago
|
}
|
||
|
|
||
|
/**
|
||
|
* This is implemented as a singleton. This class manages creating the
|
||
|
* uORB nodes for each uORB topics and also implements the behavor of the
|
||
|
* uORB Api's.
|
||
|
*/
|
||
7 years ago
|
class uORB::Manager
|
||
|
#ifdef ORB_COMMUNICATOR
|
||
|
: public uORBCommunicator::IChannelRxHandler
|
||
|
#endif /* ORB_COMMUNICATOR */
|
||
10 years ago
|
{
|
||
10 years ago
|
public:
|
||
|
// public interfaces for this class.
|
||
10 years ago
|
|
||
9 years ago
|
/**
|
||
|
* Initialize the singleton. Call this before everything else.
|
||
|
* @return true on success
|
||
|
*/
|
||
|
static bool initialize();
|
||
|
|
||
6 years ago
|
/**
|
||
|
* Terminate the singleton. Call this after everything else.
|
||
|
* @return true on success
|
||
|
*/
|
||
|
static bool terminate();
|
||
|
|
||
10 years ago
|
/**
|
||
|
* Method to get the singleton instance for the uORB::Manager.
|
||
9 years ago
|
* Make sure initialize() is called first.
|
||
10 years ago
|
* @return uORB::Manager*
|
||
|
*/
|
||
7 years ago
|
static uORB::Manager *get_instance() { return _Instance; }
|
||
10 years ago
|
|
||
9 years ago
|
/**
|
||
7 years ago
|
* Get the DeviceMaster. If it does not exist,
|
||
9 years ago
|
* it will be created and initialized.
|
||
|
* Note: the first call to this is not thread-safe.
|
||
|
* @return nullptr if initialization failed (and errno will be set)
|
||
|
*/
|
||
7 years ago
|
uORB::DeviceMaster *get_device_master();
|
||
9 years ago
|
|
||
10 years ago
|
// ==== uORB interface methods ====
|
||
|
/**
|
||
|
* Advertise as the publisher of a topic.
|
||
|
*
|
||
|
* This performs the initial advertisement of a topic; it creates the topic
|
||
|
* node in /obj if required and publishes the initial data.
|
||
|
*
|
||
|
* Any number of advertisers may publish to a topic; publications are atomic
|
||
|
* but co-ordination between publishers is not provided by the ORB.
|
||
|
*
|
||
5 years ago
|
* Internally this will call orb_advertise_multi with an instance of 0.
|
||
9 years ago
|
*
|
||
10 years ago
|
* @param meta The uORB metadata (usually from the ORB_ID() macro)
|
||
|
* for the topic.
|
||
|
* @param data A pointer to the initial data to be published.
|
||
|
* For topics updated by interrupt handlers, the advertisement
|
||
|
* must be performed from non-interrupt context.
|
||
9 years ago
|
* @param queue_size Maximum number of buffered elements. If this is 1, no queuing is
|
||
|
* used.
|
||
10 years ago
|
* @return nullptr on error, otherwise returns an object pointer
|
||
|
* that can be used to publish to the topic.
|
||
|
* If the topic in question is not known (due to an
|
||
|
* ORB_DEFINE with no corresponding ORB_DECLARE)
|
||
|
* this function will return nullptr and set errno to ENOENT.
|
||
|
*/
|
||
8 years ago
|
orb_advert_t orb_advertise(const struct orb_metadata *meta, const void *data, unsigned int queue_size = 1)
|
||
|
{
|
||
5 years ago
|
return orb_advertise_multi(meta, data, nullptr, queue_size);
|
||
8 years ago
|
}
|
||
10 years ago
|
|
||
10 years ago
|
/**
|
||
|
* Advertise as the publisher of a topic.
|
||
|
*
|
||
|
* This performs the initial advertisement of a topic; it creates the topic
|
||
|
* node in /obj if required and publishes the initial data.
|
||
|
*
|
||
|
* Any number of advertisers may publish to a topic; publications are atomic
|
||
|
* but co-ordination between publishers is not provided by the ORB.
|
||
|
*
|
||
9 years ago
|
* The multi can be used to create multiple independent instances of the same topic
|
||
|
* (each instance has its own buffer).
|
||
|
* This is useful for multiple publishers who publish the same topic. The subscriber
|
||
|
* then subscribes to all instances and chooses which source he wants to use.
|
||
|
*
|
||
10 years ago
|
* @param meta The uORB metadata (usually from the ORB_ID() macro)
|
||
|
* for the topic.
|
||
|
* @param data A pointer to the initial data to be published.
|
||
|
* For topics updated by interrupt handlers, the advertisement
|
||
|
* must be performed from non-interrupt context.
|
||
|
* @param instance Pointer to an integer which will yield the instance ID (0-based)
|
||
9 years ago
|
* of the publication. This is an output parameter and will be set to the newly
|
||
|
* created instance, ie. 0 for the first advertiser, 1 for the next and so on.
|
||
9 years ago
|
* @param queue_size Maximum number of buffered elements. If this is 1, no queuing is
|
||
|
* used.
|
||
7 years ago
|
* @return PX4_ERROR on error, otherwise returns a handle
|
||
10 years ago
|
* that can be used to publish to the topic.
|
||
|
* If the topic in question is not known (due to an
|
||
|
* ORB_DEFINE with no corresponding ORB_DECLARE)
|
||
|
* this function will return -1 and set errno to ENOENT.
|
||
|
*/
|
||
5 years ago
|
orb_advert_t orb_advertise_multi(const struct orb_metadata *meta, const void *data, int *instance,
|
||
5 years ago
|
unsigned int queue_size = 1);
|
||
10 years ago
|
|
||
9 years ago
|
/**
|
||
|
* Unadvertise a topic.
|
||
|
*
|
||
|
* @param handle handle returned by orb_advertise or orb_advertise_multi.
|
||
|
* @return 0 on success
|
||
|
*/
|
||
|
int orb_unadvertise(orb_advert_t handle);
|
||
|
|
||
10 years ago
|
/**
|
||
|
* Publish new data to a topic.
|
||
|
*
|
||
|
* The data is atomically published to the topic and any waiting subscribers
|
||
|
* will be notified. Subscribers that are not waiting can check the topic
|
||
5 years ago
|
* for updates using orb_check.
|
||
10 years ago
|
*
|
||
|
* @param meta The uORB metadata (usually from the ORB_ID() macro)
|
||
|
* for the topic.
|
||
|
* @handle The handle returned from orb_advertise.
|
||
|
* @param data A pointer to the data to be published.
|
||
7 years ago
|
* @return OK on success, PX4_ERROR otherwise with errno set accordingly.
|
||
10 years ago
|
*/
|
||
7 years ago
|
int orb_publish(const struct orb_metadata *meta, orb_advert_t handle, const void *data);
|
||
10 years ago
|
|
||
10 years ago
|
/**
|
||
|
* Subscribe to a topic.
|
||
|
*
|
||
|
* The returned value is a file descriptor that can be passed to poll()
|
||
|
* in order to wait for updates to a topic, as well as topic_read,
|
||
5 years ago
|
* orb_check.
|
||
10 years ago
|
*
|
||
7 years ago
|
* If there were any publications of the topic prior to the subscription,
|
||
|
* an orb_check right after orb_subscribe will return true.
|
||
|
*
|
||
10 years ago
|
* Subscription will succeed even if the topic has not been advertised;
|
||
|
* in this case the topic will have a timestamp of zero, it will never
|
||
|
* signal a poll() event, checking will always return false and it cannot
|
||
|
* be copied. When the topic is subsequently advertised, poll, check,
|
||
|
* stat and copy calls will react to the initial publication that is
|
||
|
* performed as part of the advertisement.
|
||
|
*
|
||
|
* Subscription will fail if the topic is not known to the system, i.e.
|
||
|
* there is nothing in the system that has declared the topic and thus it
|
||
|
* can never be published.
|
||
|
*
|
||
9 years ago
|
* Internally this will call orb_subscribe_multi with instance 0.
|
||
|
*
|
||
10 years ago
|
* @param meta The uORB metadata (usually from the ORB_ID() macro)
|
||
|
* for the topic.
|
||
7 years ago
|
* @return PX4_ERROR on error, otherwise returns a handle
|
||
10 years ago
|
* that can be used to read and update the topic.
|
||
|
*/
|
||
7 years ago
|
int orb_subscribe(const struct orb_metadata *meta);
|
||
10 years ago
|
|
||
10 years ago
|
/**
|
||
|
* Subscribe to a multi-instance of a topic.
|
||
|
*
|
||
|
* The returned value is a file descriptor that can be passed to poll()
|
||
|
* in order to wait for updates to a topic, as well as topic_read,
|
||
5 years ago
|
* orb_check.
|
||
10 years ago
|
*
|
||
7 years ago
|
* If there were any publications of the topic prior to the subscription,
|
||
|
* an orb_check right after orb_subscribe_multi will return true.
|
||
|
*
|
||
10 years ago
|
* Subscription will succeed even if the topic has not been advertised;
|
||
|
* in this case the topic will have a timestamp of zero, it will never
|
||
|
* signal a poll() event, checking will always return false and it cannot
|
||
|
* be copied. When the topic is subsequently advertised, poll, check,
|
||
|
* stat and copy calls will react to the initial publication that is
|
||
|
* performed as part of the advertisement.
|
||
|
*
|
||
|
* Subscription will fail if the topic is not known to the system, i.e.
|
||
|
* there is nothing in the system that has declared the topic and thus it
|
||
|
* can never be published.
|
||
|
*
|
||
9 years ago
|
* If a publisher publishes multiple instances the subscriber should
|
||
|
* subscribe to each instance with orb_subscribe_multi
|
||
|
* (@see orb_advertise_multi()).
|
||
|
*
|
||
10 years ago
|
* @param meta The uORB metadata (usually from the ORB_ID() macro)
|
||
|
* for the topic.
|
||
|
* @param instance The instance of the topic. Instance 0 matches the
|
||
|
* topic of the orb_subscribe() call, higher indices
|
||
9 years ago
|
* are for topics created with orb_advertise_multi().
|
||
7 years ago
|
* @return PX4_ERROR on error, otherwise returns a handle
|
||
10 years ago
|
* that can be used to read and update the topic.
|
||
|
* If the topic in question is not known (due to an
|
||
|
* ORB_DEFINE_OPTIONAL with no corresponding ORB_DECLARE)
|
||
|
* this function will return -1 and set errno to ENOENT.
|
||
|
*/
|
||
7 years ago
|
int orb_subscribe_multi(const struct orb_metadata *meta, unsigned instance);
|
||
10 years ago
|
|
||
10 years ago
|
/**
|
||
|
* Unsubscribe from a topic.
|
||
|
*
|
||
|
* @param handle A handle returned from orb_subscribe.
|
||
7 years ago
|
* @return OK on success, PX4_ERROR otherwise with errno set accordingly.
|
||
10 years ago
|
*/
|
||
7 years ago
|
int orb_unsubscribe(int handle);
|
||
10 years ago
|
|
||
10 years ago
|
/**
|
||
|
* Fetch data from a topic.
|
||
|
*
|
||
|
* This is the only operation that will reset the internal marker that
|
||
|
* indicates that a topic has been updated for a subscriber. Once poll
|
||
|
* or check return indicating that an updaet is available, this call
|
||
|
* must be used to update the subscription.
|
||
|
*
|
||
|
* @param meta The uORB metadata (usually from the ORB_ID() macro)
|
||
|
* for the topic.
|
||
|
* @param handle A handle returned from orb_subscribe.
|
||
|
* @param buffer Pointer to the buffer receiving the data, or NULL
|
||
|
* if the caller wants to clear the updated flag without
|
||
|
* using the data.
|
||
7 years ago
|
* @return OK on success, PX4_ERROR otherwise with errno set accordingly.
|
||
10 years ago
|
*/
|
||
7 years ago
|
int orb_copy(const struct orb_metadata *meta, int handle, void *buffer);
|
||
10 years ago
|
|
||
10 years ago
|
/**
|
||
|
* Check whether a topic has been published to since the last orb_copy.
|
||
|
*
|
||
|
* This check can be used to determine whether to copy the topic when
|
||
|
* not using poll(), or to avoid the overhead of calling poll() when the
|
||
|
* topic is likely to have updated.
|
||
|
*
|
||
|
* Updates are tracked on a per-handle basis; this call will continue to
|
||
5 years ago
|
* return true until orb_copy is called using the same handle.
|
||
10 years ago
|
*
|
||
|
* @param handle A handle returned from orb_subscribe.
|
||
|
* @param updated Set to true if the topic has been updated since the
|
||
|
* last time it was copied using this handle.
|
||
7 years ago
|
* @return OK if the check was successful, PX4_ERROR otherwise with
|
||
10 years ago
|
* errno set accordingly.
|
||
|
*/
|
||
7 years ago
|
int orb_check(int handle, bool *updated);
|
||
10 years ago
|
|
||
10 years ago
|
/**
|
||
7 years ago
|
* Check if a topic has already been created and published (advertised)
|
||
10 years ago
|
*
|
||
|
* @param meta ORB topic metadata.
|
||
|
* @param instance ORB instance
|
||
7 years ago
|
* @return OK if the topic exists, PX4_ERROR otherwise.
|
||
10 years ago
|
*/
|
||
7 years ago
|
int orb_exists(const struct orb_metadata *meta, int instance);
|
||
10 years ago
|
|
||
10 years ago
|
/**
|
||
|
* Set the minimum interval between which updates are seen for a subscription.
|
||
|
*
|
||
|
* If this interval is set, the subscriber will not see more than one update
|
||
|
* within the period.
|
||
|
*
|
||
|
* Specifically, the first time an update is reported to the subscriber a timer
|
||
|
* is started. The update will continue to be reported via poll and orb_check, but
|
||
|
* once fetched via orb_copy another update will not be reported until the timer
|
||
|
* expires.
|
||
|
*
|
||
|
* This feature can be used to pace a subscriber that is watching a topic that
|
||
|
* would otherwise update too quickly.
|
||
|
*
|
||
|
* @param handle A handle returned from orb_subscribe.
|
||
|
* @param interval An interval period in milliseconds.
|
||
7 years ago
|
* @return OK on success, PX4_ERROR otherwise with ERRNO set accordingly.
|
||
10 years ago
|
*/
|
||
7 years ago
|
int orb_set_interval(int handle, unsigned interval);
|
||
10 years ago
|
|
||
9 years ago
|
|
||
|
/**
|
||
|
* Get the minimum interval between which updates are seen for a subscription.
|
||
|
*
|
||
|
* @see orb_set_interval()
|
||
|
*
|
||
|
* @param handle A handle returned from orb_subscribe.
|
||
|
* @param interval The returned interval period in milliseconds.
|
||
7 years ago
|
* @return OK on success, PX4_ERROR otherwise with ERRNO set accordingly.
|
||
9 years ago
|
*/
|
||
|
int orb_get_interval(int handle, unsigned *interval);
|
||
|
|
||
7 years ago
|
#ifdef ORB_COMMUNICATOR
|
||
10 years ago
|
/**
|
||
|
* Method to set the uORBCommunicator::IChannel instance.
|
||
|
* @param comm_channel
|
||
|
* The IChannel instance to talk to remote proxies.
|
||
|
* @note:
|
||
|
* Currently this call only supports the use of one IChannel
|
||
|
* Future extensions may include more than one IChannel's.
|
||
|
*/
|
||
|
void set_uorb_communicator(uORBCommunicator::IChannel *comm_channel);
|
||
10 years ago
|
|
||
10 years ago
|
/**
|
||
|
* Gets the uORB Communicator instance.
|
||
|
*/
|
||
8 years ago
|
uORBCommunicator::IChannel *get_uorb_communicator();
|
||
10 years ago
|
|
||
10 years ago
|
/**
|
||
|
* Utility method to check if there is a remote subscriber present
|
||
|
* for a given topic
|
||
|
*/
|
||
|
bool is_remote_subscriber_present(const char *messageName);
|
||
7 years ago
|
#endif /* ORB_COMMUNICATOR */
|
||
10 years ago
|
|
||
10 years ago
|
private: // class methods
|
||
10 years ago
|
|
||
10 years ago
|
/**
|
||
|
* Common implementation for orb_advertise and orb_subscribe.
|
||
|
*
|
||
|
* Handles creation of the object and the initial publication for
|
||
|
* advertisers.
|
||
|
*/
|
||
5 years ago
|
int node_open(const struct orb_metadata *meta, bool advertiser, int *instance = nullptr);
|
||
10 years ago
|
|
||
10 years ago
|
private: // data members
|
||
10 years ago
|
static Manager *_Instance;
|
||
7 years ago
|
|
||
|
#ifdef ORB_COMMUNICATOR
|
||
10 years ago
|
// the communicator channel instance.
|
||
7 years ago
|
uORBCommunicator::IChannel *_comm_channel{nullptr};
|
||
7 years ago
|
|
||
10 years ago
|
ORBSet _remote_subscriber_topics;
|
||
9 years ago
|
ORBSet _remote_topics;
|
||
7 years ago
|
#endif /* ORB_COMMUNICATOR */
|
||
10 years ago
|
|
||
7 years ago
|
DeviceMaster *_device_master{nullptr};
|
||
9 years ago
|
|
||
10 years ago
|
private: //class methods
|
||
|
Manager();
|
||
6 years ago
|
virtual ~Manager();
|
||
10 years ago
|
|
||
7 years ago
|
#ifdef ORB_COMMUNICATOR
|
||
9 years ago
|
/**
|
||
|
* Interface to process a received topic from remote.
|
||
|
* @param topic_name
|
||
|
* This represents the uORB message Name (topic); This message Name should be
|
||
|
* globally unique.
|
||
|
* @param isAdvertisement
|
||
|
* Represents if the topic has been advertised or is no longer avialable.
|
||
|
* @return
|
||
|
* 0 = success; This means the messages is successfully handled in the
|
||
|
* handler.
|
||
|
* otherwise = failure.
|
||
|
*/
|
||
|
virtual int16_t process_remote_topic(const char *topic_name, bool isAdvertisement);
|
||
|
|
||
10 years ago
|
/**
|
||
|
* Interface to process a received AddSubscription from remote.
|
||
|
* @param messageName
|
||
|
* This represents the uORB message Name; This message Name should be
|
||
|
* globally unique.
|
||
|
* @param msgRate
|
||
|
* The max rate at which the subscriber can accept the messages.
|
||
|
* @return
|
||
|
* 0 = success; This means the messages is successfully handled in the
|
||
|
* handler.
|
||
|
* otherwise = failure.
|
||
|
*/
|
||
7 years ago
|
virtual int16_t process_add_subscription(const char *messageName, int32_t msgRateInHz);
|
||
10 years ago
|
|
||
10 years ago
|
/**
|
||
|
* Interface to process a received control msg to remove subscription
|
||
|
* @param messageName
|
||
|
* This represents the uORB message Name; This message Name should be
|
||
|
* globally unique.
|
||
|
* @return
|
||
|
* 0 = success; This means the messages is successfully handled in the
|
||
|
* handler.
|
||
|
* otherwise = failure.
|
||
|
*/
|
||
|
virtual int16_t process_remove_subscription(const char *messageName);
|
||
10 years ago
|
|
||
10 years ago
|
/**
|
||
|
* Interface to process the received data message.
|
||
|
* @param messageName
|
||
|
* This represents the uORB message Name; This message Name should be
|
||
|
* globally unique.
|
||
|
* @param length
|
||
|
* The length of the data buffer to be sent.
|
||
|
* @param data
|
||
|
* The actual data to be sent.
|
||
|
* @return
|
||
|
* 0 = success; This means the messages is successfully handled in the
|
||
|
* handler.
|
||
|
* otherwise = failure.
|
||
|
*/
|
||
7 years ago
|
virtual int16_t process_received_message(const char *messageName, int32_t length, uint8_t *data);
|
||
|
#endif /* ORB_COMMUNICATOR */
|
||
9 years ago
|
|
||
|
#ifdef ORB_USE_PUBLISHER_RULES
|
||
|
|
||
|
struct PublisherRule {
|
||
|
const char **topics; //null-terminated list of topic names
|
||
|
const char *module_name; //only this module is allowed to publish one of the topics
|
||
|
bool ignore_other_topics;
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* test if str starts with pre
|
||
|
*/
|
||
|
bool startsWith(const char *pre, const char *str);
|
||
|
|
||
|
/**
|
||
|
* find a topic in a rule
|
||
|
*/
|
||
|
bool findTopic(const PublisherRule &rule, const char *topic_name);
|
||
|
|
||
|
/**
|
||
|
* trim whitespace from the beginning of a string
|
||
|
*/
|
||
|
void strTrim(const char **str);
|
||
|
|
||
|
/**
|
||
|
* Read publisher rules from a file. It has the format:
|
||
|
*
|
||
|
* restrict_topics: <topic1>, <topic2>, <topic3>
|
||
|
* module: <module_name>
|
||
|
* [ignore_others:true]
|
||
|
*
|
||
|
* @return 0 on success, <0 otherwise
|
||
|
*/
|
||
|
int readPublisherRulesFromFile(const char *file_name, PublisherRule &rule);
|
||
|
|
||
|
PublisherRule _publisher_rule;
|
||
|
bool _has_publisher_rules = false;
|
||
|
|
||
|
#endif /* ORB_USE_PUBLISHER_RULES */
|
||
|
|
||
10 years ago
|
};
|
||
|
|
||
|
#endif /* _uORBManager_hpp_ */
|