RadioHead
Classes | Public Member Functions | Protected Member Functions | List of all members
RHMesh Class Reference

RHRouter subclass for sending addressed, optionally acknowledged datagrams multi-hop routed across a network, with automatic route discovery. More...

#include <RHMesh.h>

Inheritance diagram for RHMesh:
RHRouter RHReliableDatagram RHDatagram

Classes

struct  MeshApplicationMessage
 Signals an application layer message for the caller of RHMesh. More...
 
struct  MeshMessageHeader
 Structure of the basic RHMesh header. More...
 
struct  MeshRouteDiscoveryMessage
 Signals a route discovery request or reply (At present only supports physical dest addresses of length 1 octet) More...
 
struct  MeshRouteFailureMessage
 Signals a route failure. More...
 

Public Member Functions

 RHMesh (RHGenericDriver &driver, uint8_t thisAddress=0)
 
uint8_t sendtoWait (uint8_t *buf, uint8_t len, uint8_t dest, uint8_t flags=0)
 
bool recvfromAck (uint8_t *buf, uint8_t *len, uint8_t *source=NULL, uint8_t *dest=NULL, uint8_t *id=NULL, uint8_t *flags=NULL, uint8_t *hops=NULL)
 
bool recvfromAckTimeout (uint8_t *buf, uint8_t *len, uint16_t timeout, uint8_t *source=NULL, uint8_t *dest=NULL, uint8_t *id=NULL, uint8_t *flags=NULL, uint8_t *hops=NULL)
 
- Public Member Functions inherited from RHRouter
 RHRouter (RHGenericDriver &driver, uint8_t thisAddress=0)
 
bool init ()
 
void setIsaRouter (bool isa_router)
 
void setMaxHops (uint8_t max_hops)
 
void addRouteTo (uint8_t dest, uint8_t next_hop, uint8_t state=Valid)
 
RoutingTableEntrygetRouteTo (uint8_t dest)
 
bool deleteRouteTo (uint8_t dest)
 
void retireOldestRoute ()
 
void clearRoutingTable ()
 
void printRoutingTable ()
 
bool getNextValidRoutingTableEntry (RoutingTableEntry *RTE_p, int *lastIndex_p)
 
uint8_t sendtoWait (uint8_t *buf, uint8_t len, uint8_t dest, uint8_t flags=0)
 
uint8_t sendtoFromSourceWait (uint8_t *buf, uint8_t len, uint8_t dest, uint8_t source, uint8_t flags=0)
 
bool recvfromAck (uint8_t *buf, uint8_t *len, uint8_t *source=NULL, uint8_t *dest=NULL, uint8_t *id=NULL, uint8_t *flags=NULL, uint8_t *hops=NULL)
 
bool recvfromAckTimeout (uint8_t *buf, uint8_t *len, uint16_t timeout, uint8_t *source=NULL, uint8_t *dest=NULL, uint8_t *id=NULL, uint8_t *flags=NULL, uint8_t *hops=NULL)
 
- Public Member Functions inherited from RHReliableDatagram
 RHReliableDatagram (RHGenericDriver &driver, uint8_t thisAddress=0)
 
void setTimeout (uint16_t timeout)
 
void setRetries (uint8_t retries)
 
uint8_t retries ()
 
bool sendtoWait (uint8_t *buf, uint8_t len, uint8_t address)
 
bool recvfromAck (uint8_t *buf, uint8_t *len, uint8_t *from=NULL, uint8_t *to=NULL, uint8_t *id=NULL, uint8_t *flags=NULL)
 
bool recvfromAckTimeout (uint8_t *buf, uint8_t *len, uint16_t timeout, uint8_t *from=NULL, uint8_t *to=NULL, uint8_t *id=NULL, uint8_t *flags=NULL)
 
uint32_t retransmissions ()
 
void resetRetransmissions ()
 
- Public Member Functions inherited from RHDatagram
 RHDatagram (RHGenericDriver &driver, uint8_t thisAddress=0)
 
bool init ()
 
void setThisAddress (uint8_t thisAddress)
 
bool sendto (uint8_t *buf, uint8_t len, uint8_t address)
 
bool recvfrom (uint8_t *buf, uint8_t *len, uint8_t *from=NULL, uint8_t *to=NULL, uint8_t *id=NULL, uint8_t *flags=NULL)
 
bool available ()
 
void waitAvailable (uint16_t polldelay=0)
 
bool waitPacketSent ()
 
bool waitPacketSent (uint16_t timeout)
 
bool waitAvailableTimeout (uint16_t timeout, uint16_t polldelay=0)
 
void setHeaderTo (uint8_t to)
 
void setHeaderFrom (uint8_t from)
 
void setHeaderId (uint8_t id)
 
void setHeaderFlags (uint8_t set, uint8_t clear=RH_FLAGS_NONE)
 
uint8_t headerTo ()
 
uint8_t headerFrom ()
 
uint8_t headerId ()
 
uint8_t headerFlags ()
 
uint8_t thisAddress ()
 

Protected Member Functions

virtual void peekAtMessage (RoutedMessage *message, uint8_t messageLen)
 
virtual uint8_t route (RoutedMessage *message, uint8_t messageLen)
 
virtual bool doArp (uint8_t address)
 
virtual bool isPhysicalAddress (uint8_t *address, uint8_t addresslen)
 
- Protected Member Functions inherited from RHRouter
virtual void peekAtMessage (RoutedMessage *message, uint8_t messageLen)
 
virtual uint8_t route (RoutedMessage *message, uint8_t messageLen)
 
void deleteRoute (uint8_t index)
 
- Protected Member Functions inherited from RHReliableDatagram
void acknowledge (uint8_t id, uint8_t from)
 
bool haveNewMessage ()
 

Additional Inherited Members

- Public Types inherited from RHRouter
enum  RouteState { Invalid = 0 , Discovering , Valid }
 Values for the possible states for routes. More...
 
- Protected Attributes inherited from RHRouter
uint8_t _lastE2ESequenceNumber
 
uint8_t _max_hops
 
bool _isa_router
 Flag to set if packets are forwarded or not.
 
- Protected Attributes inherited from RHDatagram
RHGenericDriver_driver
 The Driver we are to use.
 
uint8_t _thisAddress
 The address of this node.
 

Detailed Description

RHRouter subclass for sending addressed, optionally acknowledged datagrams multi-hop routed across a network, with automatic route discovery.

Manager class that extends RHRouter to add automatic route discovery within a mesh of adjacent nodes, and route signalling.

Unlike RHRouter, RHMesh can be used in networks where the network topology is fluid, or unknown, or if nodes can mode around or go in or out of service. When a node wants to send a message to another node, it will automatically discover a route to the destination node and use it. If the route becomes unavailable, a new route will be discovered.

Route Discovery

When a RHMesh mesh node is initialised, it doe not know any routes to any other nodes (see RHRouter for details on route and the routing table). When you attempt to send a message with sendtoWait, will first check to see if there is a route to the destinastion node in the routing tabl;e. If not, it wil initialite 'Route Discovery'. When a node needs to discover a route to another node, it broadcasts MeshRouteDiscoveryMessage with a message type of RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_REQUEST. Any node that receives such a request checks to see if it is a request for a route to itself (in which case it makes a unicast reply to the originating node with a MeshRouteDiscoveryMessage with a message type of RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_RESPONSE) otherwise it rebroadcasts the request, after adding itself to the list of nodes visited so far by the request.

If a node receives a RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_REQUEST that already has itself listed in the visited nodes, it knows it has already seen and rebroadcast this request, and threfore ignores it. This prevents broadcast storms. When a node receives a RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_REQUEST it can use the list of nodes aready visited to deduce routes back towards the originating (requesting node). This also means that when the destination node of the request is reached, it (and all the previous nodes the request visited) will have a route back to the originating node. This means the unicast RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_RESPONSE reply will be routed successfully back to the original route requester.

The RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_RESPONSE sent back by the destination node contains the full list of nodes that were visited on the way to the destination. Therefore, intermediate nodes that route the reply back towards the originating node can use the node list in the reply to deduce routes to all the nodes between it and the destination node.

Therefore, RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_REQUEST and RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_RESPONSE together ensure the original requester and all the intermediate nodes know how to route to the source and destination nodes and every node along the path.

Note that there is a race condition here that can effect routing on multipath routes. For example, if the route to the destination can traverse several paths, last reply from the destination will be the one used.

Route Failure

RHRouter (and therefore RHMesh) use reliable hop-to-hop delivery of messages using hop-to-hop acknowledgements, but not end-to-end acknowledgements. When sendtoWait() returns, you know that the message has been delivered to the next hop, but not if it is (or even if it can be) delivered to the destination node. If during the course of hop-to-hop routing of a message, one of the intermediate RHMesh nodes finds it cannot deliver to the next hop (say due to a lost route or no acknwledgement from the next hop), it replies to the originator with a unicast MeshRouteFailureMessage RH_MESH_MESSAGE_TYPE_ROUTE_FAILURE message. Intermediate nodes (on the way beack to the originator) and the originating node use this message to delete the route to the destination node of the original message. This means that if a route to a destination becomes unusable (either because an intermediate node is off the air, or has moved out of range) a new route will be established the next time a message is to be sent.

Message Format

RHMesh uses a number of message formats layered on top of RHRouter:

Part of the Arduino RH library for operating with HopeRF RH compatible transceivers (see http://www.hoperf.com)

Memory

RHMesh programs require significant amount of SRAM, often approaching 2kbytes, which is beyond or at the limits of some Arduinos and other processors. Programs with additional software besides basic RHMesh programs may well require even more. If you have insufficient SRAM for your program, it may result in failure to run, or wierd crashes and other hard to trace behaviour. In this event you should consider a processor with more SRAM, such as the MotienoMEGA with 16k (https://lowpowerlab.com/shop/moteinomega) or others.

Performance
This class (in the interests of simple implemtenation and low memory use) does not have message queueing. This means that only one message at a time can be handled. Message transmission failures can have a severe impact on network performance. If you need high performance mesh networking under all conditions consider XBee or similar.

Constructor & Destructor Documentation

◆ RHMesh()

RHMesh::RHMesh ( RHGenericDriver driver,
uint8_t  thisAddress = 0 
)

Constructor.

Parameters
[in]driverThe RadioHead driver to use to transport messages.
[in]thisAddressThe address to assign to this node. Defaults to 0

Member Function Documentation

◆ doArp()

bool RHMesh::doArp ( uint8_t  address)
protectedvirtual

Try to resolve a route for the given address. Blocks while discovering the route which may take up to 4000 msec. Virtual so subclasses can override.

Parameters
[in]addressThe physical address to resolve
Returns
true if the address was resolved and added to the local routing table

References RHRouter::addRouteTo(), RHMesh::MeshRouteDiscoveryMessage::dest, RHMesh::MeshRouteDiscoveryMessage::destlen, RHMesh::MeshRouteDiscoveryMessage::header, RHDatagram::headerFrom(), RHMesh::MeshMessageHeader::msgType, RHRouter::recvfromAck(), RHRouter::sendtoWait(), and RHDatagram::waitAvailableTimeout().

Referenced by sendtoWait().

◆ isPhysicalAddress()

bool RHMesh::isPhysicalAddress ( uint8_t *  address,
uint8_t  addresslen 
)
protectedvirtual

Tests if the given address of length addresslen is indentical to the physical address of this node. RHMesh always implements physical addresses as the 1 octet address of the node given by _thisAddress Called by recvfromAck() to test whether a RH_MESH_MESSAGE_TYPE_ROUTE_DISCOVERY_REQUEST is for this node. Subclasses may want to override to implement more complicated or longer physical addresses

Parameters
[in]addressAddress of the pyysical addres being tested
[in]addresslenLengthof the address in bytes
Returns
true if the physical address of this node is identical to address

References RHDatagram::_thisAddress.

Referenced by recvfromAck().

◆ peekAtMessage()

void RHMesh::peekAtMessage ( RoutedMessage message,
uint8_t  messageLen 
)
protectedvirtual

Internal function that inspects messages being received and adjusts the routing table if necessary. Called by recvfromAck() immediately after it gets the message from RHReliableDatagram

Parameters
[in]messagePointer to the RHRouter message that was received.
[in]messageLenLength of message in octets

Reimplemented from RHRouter.

References RHDatagram::_thisAddress, RHRouter::addRouteTo(), RHRouter::RoutedMessage::data, RHRouter::deleteRouteTo(), RHMesh::MeshRouteDiscoveryMessage::dest, RHMesh::MeshRouteFailureMessage::dest, RHDatagram::headerFrom(), RHMesh::MeshMessageHeader::msgType, and RHMesh::MeshRouteDiscoveryMessage::route.

◆ recvfromAck()

bool RHMesh::recvfromAck ( uint8_t *  buf,
uint8_t *  len,
uint8_t *  source = NULL,
uint8_t *  dest = NULL,
uint8_t *  id = NULL,
uint8_t *  flags = NULL,
uint8_t *  hops = NULL 
)

Starts the receiver if it is not running already, processes and possibly routes any received messages addressed to other nodes and delivers any messages addressed to this node. If there is a valid application layer message available for this node (or RH_BROADCAST_ADDRESS), send an acknowledgement to the last hop address (blocking until this is complete), then copy the application message payload data to buf and return true else return false. If a message is copied, *len is set to the length.. If from is not NULL, the originator SOURCE address is placed in *source. If to is not NULL, the DEST address is placed in *dest. This might be this nodes address or RH_BROADCAST_ADDRESS. This is the preferred function for getting messages addressed to this node. If the message is not a broadcast, acknowledge to the sender before returning.

Parameters
[in]bufLocation to copy the received message
[in,out]lenPointer to the number of octets available in buf. The number be reset to the actual number of octets copied.
[in]sourceIf present and not NULL, the referenced uint8_t will be set to the SOURCE address
[in]destIf present and not NULL, the referenced uint8_t will be set to the DEST address
[in]idIf present and not NULL, the referenced uint8_t will be set to the ID
[in]flagsIf present and not NULL, the referenced uint8_t will be set to the FLAGS
[in]hopsIf present and not NULL, the referenced uint8_t will be set to the HOPS (not just those addressed to this node).
Returns
true if a valid message was received for this node and copied to buf

References RHRouter::_isa_router, RHRouter::_max_hops, RHDatagram::_thisAddress, RHRouter::addRouteTo(), RHMesh::MeshApplicationMessage::data, RHMesh::MeshRouteDiscoveryMessage::dest, RHMesh::MeshRouteDiscoveryMessage::destlen, RHMesh::MeshRouteDiscoveryMessage::header, RHDatagram::headerFrom(), isPhysicalAddress(), RHMesh::MeshMessageHeader::msgType, RHRouter::recvfromAck(), RHMesh::MeshRouteDiscoveryMessage::route, RHRouter::sendtoFromSourceWait(), and RHRouter::sendtoWait().

Referenced by recvfromAckTimeout().

◆ recvfromAckTimeout()

bool RHMesh::recvfromAckTimeout ( uint8_t *  buf,
uint8_t *  len,
uint16_t  timeout,
uint8_t *  source = NULL,
uint8_t *  dest = NULL,
uint8_t *  id = NULL,
uint8_t *  flags = NULL,
uint8_t *  hops = NULL 
)

Starts the receiver if it is not running already. Similar to recvfromAck(), this will block until either a valid application layer message available for this node or the timeout expires.

Parameters
[in]bufLocation to copy the received message
[in,out]lenPointer to the number of octets available in buf. The number be reset to the actual number of octets copied.
[in]timeoutMaximum time to wait in milliseconds
[in]sourceIf present and not NULL, the referenced uint8_t will be set to the SOURCE address
[in]destIf present and not NULL, the referenced uint8_t will be set to the DEST address
[in]idIf present and not NULL, the referenced uint8_t will be set to the ID
[in]flagsIf present and not NULL, the referenced uint8_t will be set to the FLAGS
[in]hopsIf present and not NULL, the referenced uint8_t will be set to the HOPS (not just those addressed to this node).
Returns
true if a valid message was copied to buf

References recvfromAck(), and RHDatagram::waitAvailableTimeout().

◆ route()

uint8_t RHMesh::route ( RoutedMessage message,
uint8_t  messageLen 
)
protectedvirtual

Internal function that inspects messages being received and adjusts the routing table if necessary. This is virtual, which lets subclasses override or intercept the route() function. Called by sendtoWait after the message header has been filled in.

Parameters
[in]messagePointer to the RHRouter message to be sent.
[in]messageLenLength of message in octets

Reimplemented from RHRouter.

References RHDatagram::_thisAddress, RHRouter::addRouteTo(), RHRouter::deleteRouteTo(), RHMesh::MeshRouteFailureMessage::dest, RHRouter::RoutedMessageHeader::dest, RHMesh::MeshRouteFailureMessage::header, RHRouter::RoutedMessage::header, RHDatagram::headerFrom(), RHMesh::MeshMessageHeader::msgType, RHRouter::route(), RHRouter::sendtoWait(), and RHRouter::RoutedMessageHeader::source.

Referenced by sendtoWait().

◆ sendtoWait()

uint8_t RHMesh::sendtoWait ( uint8_t *  buf,
uint8_t  len,
uint8_t  dest,
uint8_t  flags = 0 
)

Sends a message to the destination node. Initialises the RHRouter message header (the SOURCE address is set to the address of this node, HOPS to 0) and calls route() which looks up in the routing table the next hop to deliver to. If no route is known, initiates route discovery and waits for a reply. Then sends the message to the next hop Then waits for an acknowledgement from the next hop (but not from the destination node (if that is different).

Parameters
[in]bufThe application message data
[in]lenNumber of octets in the application message data. 0 is permitted
[in]destThe destination node address. If the address is RH_BROADCAST_ADDRESS (255) the message will be broadcast to all the nearby nodes, but not routed or relayed.
[in]flagsOptional flags for use by subclasses or application layer, delivered end-to-end to the dest address. The receiver can recover the flags with recvFromAck().
Returns
The result code:
  • RH_ROUTER_ERROR_NONE Message was routed and delivered to the next hop (not necessarily to the final dest address)
  • RH_ROUTER_ERROR_NO_ROUTE There was no route for dest in the local routing table
  • RH_ROUTER_ERROR_UNABLE_TO_DELIVER Not able to deliver to the next hop (usually because it dod not acknowledge due to being off the air or out of range

References RHMesh::MeshApplicationMessage::data, doArp(), RHRouter::getRouteTo(), RHMesh::MeshApplicationMessage::header, RHMesh::MeshMessageHeader::msgType, route(), and RHRouter::sendtoWait().


The documentation for this class was generated from the following files: