Skip to content
This repository has been archived by the owner on Feb 26, 2022. It is now read-only.

Commit

Permalink
Last v1.x commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
JChristensen committed Oct 20, 2013
1 parent 783e7f7 commit 9d59cb0
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions ReadMe.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,21 @@ Changed data types of variables and functions:
o pin numbers and pin values changed from int to uint8_t, this agrees with digitalWrite().
o added return values to Timer::pulse() and Timer::oscillate(uint8_t, unsigned long, uint8_t).
o changed test in Event::update() to use subtraction to avoid rollover issues.
Updated keywords.txt file to include all functions.
o Updated keywords.txt file to include all functions.

1.2 by Damian Philipp
o Added a range check to Timer::stop() to avoid memory corruption.
o Added constants to <Timer.h>:
- NO_TIMER_AVAILABLE: Signals that while an event was to be queued, no free timer could be found.
- TIMER_NOT_AN_EVENT: Can be used to flag a variable that *might* contain a timer ID as *not* containing a timer ID
- TIMER_NOT_AN_EVENT: Can be used to flag a variable that *might* contain a timer ID as
*not* containing a timer ID
o Replaced a bunch of magic numbers in <Timer.cpp> by the above constants
o Added several comments
o Added Timer::pulseImmediate(). pulseImmediate sets the pin to the specified value for the given
duration. After the duration, the pin is set to !value.

1.2 by Jack Christensen
o Added "blink2" example illustrating flashing two LEDs at different rates.
1.3 by Jack Christensen
o Added "blink2" example illustrating flashing two LEDs at different rates.
o 19Oct2013: This is the last v1.x release. It will continue to be available on GitHub
as a branch named v1.3. Future development will continue with Sandy Walsh's v2.0 which
can pass context (timer ID, etc.) to the callback functions.

0 comments on commit 9d59cb0

Please sign in to comment.