mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
21 lines
473 B
C++
21 lines
473 B
C++
/*
|
|
* Copyright (C) 2015 Pavel Kirienko <pavel.kirienko@gmail.com>
|
|
*/
|
|
|
|
#ifndef UAVCAN_PROTOCOL_DYNAMIC_NODE_ID_SERVER_DISTRIBUTED_HPP_INCLUDED
|
|
#define UAVCAN_PROTOCOL_DYNAMIC_NODE_ID_SERVER_DISTRIBUTED_HPP_INCLUDED
|
|
|
|
#include <uavcan/protocol/dynamic_node_id_server/distributed/server.hpp>
|
|
|
|
namespace uavcan
|
|
{
|
|
namespace dynamic_node_id_server
|
|
{
|
|
|
|
typedef distributed::Server DistributedServer;
|
|
|
|
}
|
|
}
|
|
|
|
#endif // UAVCAN_PROTOCOL_DYNAMIC_NODE_ID_SERVER_DISTRIBUTED_HPP_INCLUDED
|