A simple wireless protocol to let my examples communicate each other. ssWi stands for Shared Slotted Wireless protocol

Dependents:   rover_car rover_pc supervisor watering_unit ... more

This library aims at implementing a simple communication protocol among nodes, abstracting from the hardware. The name ssWi stands for Shared Slotted Wireless. Wireless is part of the name, even though the library abstracts from the hardware, as the first version was entirely focused on the XBee modules and then the name has not been changed.

The communication channel is represented by ssWiChannel, an abstract class which models the channel that the transceivers access to. The concrete classes must implement the functions: init, read and write. The protocol automatically sends and receives data through the selected channel, exploiting the operting system timers. Addresses are not considered as the communication lays on broadcast transmissions.

The protocol provides the ssWiPort abstraction which is like memory areas shared among all the connected nodes. Reading from one port lets the node retrieve the last written value from the other nodes. Writing on one port means sending such value to other nodes.

Objects instantiated from ssWiSocket are the interface for allowing nodes to access the protocol ports.

/media/uploads/mariob/scheme.png

TODO:

  • improve the parsing of the received messages
  • communication tests with many nodes (so far, only 2 nodes have been tested)

Files at this revision

API Documentation at this revision

Comitter:
mariob
Date:
Wed Mar 06 09:10:06 2013 +0000
Parent:
13:69ff47a83260
Child:
15:fb0f6cbc0ed5
Commit message:
MB

Changed in this revision

ssWiChannel.hpp Show annotated file Show diff for this revision Revisions of this file
--- a/ssWiChannel.hpp	Wed Mar 06 08:21:41 2013 +0000
+++ b/ssWiChannel.hpp	Wed Mar 06 09:10:06 2013 +0000
@@ -21,7 +21,7 @@
     /** \brief Initialize the protocol
      *
      * \param c ssWi channel
-     * \param TXRate how may time tx every second
+     * \param TXRate how may times trans every second
      * \param RXRate how may time rx every second
      * \return true if the channel is ready, false otherwise
      */
@@ -49,7 +49,7 @@
     /** \brief write to the socket
      *
      *  \param msg buffer with the message to send
-     *  \n number of bytes to send
+     *  \param n number of bytes to send
      */
     virtual void write (const char* msg, int n) = 0;