OnlineCourse/TimedEvents

Study material for developers

For many applications you need to do some timed events

(like setting a port bit that controls something, or enabling an interrupt)

There are several ways to time events:

When you sleep at night, do you watch your clock every 5 minutes to know when to wake up? You don't do that, do you? Most people set an alarm-clock to wake him up. This enable them to do what they really want: sleeping. This makes the difference. The busyloop people cannot do what they want, because they frequently watch the time.

With no TPU, (thus software eventqueue) the issue boils down to the following simple principle:

  1. Find what needs to be done next (and when it's due)
  2. Set your alarm clock
  3. Execute it

The 2. keeps us from doing a busyloop and wasting our cycles. 3 is almost trivial. The implementation question is about number 1:


How to find what to do next

There are 2 reasonable ways to handle it:


H is the OnlineCourse/EventQueue which is currently implementd

It utilizes the efficiency of the well known OnlineCourse/HeapStructure.


M , thus finding the minimum might sound simpler

You can put several events to a channel as long as you can tell the minimum key. (This is trivial if the events in the channel are of some sequence by nature). When you have the min-keys per channel, you just need to calculate the minimum of them, that is the value you'll need to set your alarm clock. This calculation is simple and linear function of the number of concurrent channels.

For an 8 cyl staged injection you will have max 17 channels:

8+8+1 - ignition is only 1 channel engine-wise for dummy igndrivers: no concurrency between cylinders. This is awfully lot, would not be faster than with the above H (heap-based) method with 32 events.

It seems hard to do this right with all the flexibility in our application: when the sequences are not apriori known, H is the way to go (it suits a large number of applications and simple to use). Note that there can be a hibrid solution that have H as one channel of an M setup.


See OnlineCourse/EventQueue for an implementation (of H).