Wednesday, April 10, 2013

"Multi-threaded radio" for the ISM915 band for fun and profit

This is some ideas that I plan to implement that I wanted to capture somewhere public before I forget.  I plan to implement this in the RFD900 firmware for the Mesh Extenders.

---

The ISM915 band requires frequency hopping in most countries where it is proclaimed.

This is a bit of a pain, because the frequency hopping means that we need to synchronise all the nodes in a mesh such that they are all listening and talking on the same frequency at the same time. That is, they need to be on the same "virtual channel".

The virtual channel is really just a hopping pattern, and knowing your position in the pattern.

It occurred to me some time ago that this imposition actually creates some interesting opportunities that we might not have otherwise considered for cooperative shared use of a block of spectrum.

The first step is to use a fairly fast frequency hopping pattern, hopping perhaps every 1ms - 2ms.

This hopping time is purposely shorter than the time it takes to send a whole packet.

The second step is to have each station only listen on a fraction of slots.  For example:

  1. Define a bundle to be a fixed number of, say, 10 consecutive slots.
  2. Each station listens on exactly one of those slots, based, for example, on the last three bits of its' network address.
  3. The remaining two slots are a double-sized slot for broadcast packets. All stations should listen during this slot.
  4. This means that while the logical hopping rate might be 1000Hz, the effective rate for each station is reduced to two hops per slot bundle, i.e., twice every 100Hz, i.e., 200Hz.
This reduces the number of hopping actions for each station, and to some extent allows for a little slop in the synchronisation. 

When a station sends a packet to another station, it can predict which time slot to send in, because the receiving stations listen slots can be determined from its network address.  

The sender then switches to the appropriate channel at the appropriate time, and sends the entire packet, even though it might take many slots to do so.

In effect, the transmitter and receiver switch from the shared virtual channel to another channel.  

This means that each packet transfer "forks" off from the main channel, hence my calling it "multi-threaded radio".

This means that as many packets can be in flight as there are real channels in the hopping pattern, and that they can all be used at the same time, but not by the same stations. That is, it has an intrinsic fair-share mechanism built in.

In terms of aggregate bandwidth, the result is potentially very pleasing.  

A 50 channel 128kbit hopping scheme such as we use on the RFD900 radio goes from being 128kbit/second throughput to potentially 50x128kbit = 6.4Mbit/second!

Yet, without the range reduction and increased receiver power consumption that Wi-Fi suffers by trying to make all that bandwidth available to a single station.

Anyway, I need to implement it to see how it works in reality, and whether the accurate synchronisation is possible on a completely distributed network with no external clock.

No comments:

Post a Comment