diff --git a/libuavcan/include/uavcan/node/abstract_node.hpp b/libuavcan/include/uavcan/node/abstract_node.hpp index 8414d2cec1..2976c32e75 100644 --- a/libuavcan/include/uavcan/node/abstract_node.hpp +++ b/libuavcan/include/uavcan/node/abstract_node.hpp @@ -115,12 +115,14 @@ public: return getDispatcher().getCanIOManager().send(frame, tx_deadline, MonotonicTime(), iface_mask, qos, flags); } +#if !UAVCAN_TINY /** * The @ref IRxFrameListener interface allows one to monitor all incoming CAN frames. * This feature can be used to implement multithreaded nodes, or to add secondary protocol support. */ void removeRxFrameListener() { getDispatcher().removeRxFrameListener(); } void installRxFrameListener(IRxFrameListener* lst) { getDispatcher().installRxFrameListener(lst); } +#endif }; }