Skip to content
This repository has been archived by the owner on Jan 29, 2023. It is now read-only.

Commit

Permalink
v1.1.1
Browse files Browse the repository at this point in the history
### Releases v1.1.1

1. Add example [**Change_Interval**](examples/Change_Interval) and [**ISR_16_Timers_Array_Complex**](examples/ISR_16_Timers_Array_Complex)
2. Bump up version to sync with other TimerInterrupt Libraries. Modify Version String.
  • Loading branch information
khoih-prog committed Dec 7, 2020
1 parent 80e3572 commit 0cf9906
Show file tree
Hide file tree
Showing 22 changed files with 894 additions and 259 deletions.
553 changes: 332 additions & 221 deletions README.md

Large diffs are not rendered by default.

19 changes: 10 additions & 9 deletions examples/Argument_None/Argument_None.ino
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@
Based on BlynkTimer.h
Author: Volodymyr Shymanskyy
Version: 1.0.1
Version: 1.1.1
Version Modified By Date Comments
------- ----------- ---------- -----------
1.0.0 K Hoang 04/11/2020 Initial coding
1.0.1 K Hoang 06/11/2020 Add complicated example ISR_16_Timers_Array using all 16 independent ISR Timers.
1.1.1 K.Hoang 06/12/2020 Add complex examples. Bump up version to sync with other TimerInterrupt Libraries
*****************************************************************************************************************************/

/*
Expand All @@ -40,25 +41,25 @@
*/

#if !( defined(CORE_TEENSY) || defined(TEENSYDUINO) )
#error This code is designed to run on Teensy platform! Please check your Tools->Board setting.
#error This code is designed to run on Teensy platform! Please check your Tools->Board setting.
#endif

// These define's must be placed at the beginning before #include "TeensyTimerInterrupt.h"
// Don't define Teensy_TEENSY_TIMER_INTERRUPT_DEBUG > 2. Only for special ISR debugging only. Can hang the system.
#define TEENSY_TIMER_INTERRUPT_DEBUG 1
// Don't define Teensy_TEENSY_TIMER_INTERRUPT_DEBUG > 0. Only for special ISR debugging only. Can hang the system.
#define TEENSY_TIMER_INTERRUPT_DEBUG 0

#include "TeensyTimerInterrupt.h"

#ifndef LED_BUILTIN
#define LED_BUILTIN 13
#define LED_BUILTIN 13
#endif

#ifndef LED_BLUE
#define LED_BLUE 2
#define LED_BLUE 2
#endif

#ifndef LED_RED
#define LED_RED 3
#define LED_RED 3
#endif


Expand Down Expand Up @@ -100,9 +101,9 @@ void setup()
while (!Serial);

delay(100);

Serial.println("\nStarting Argument_None on " + String(BOARD_NAME));
Serial.println("Version : " + String(TEENSY_TIMER_INTERRUPT_VERSION));
Serial.println(TEENSY_TIMER_INTERRUPT_VERSION);
Serial.println("CPU Frequency = " + String(F_CPU / 1000000) + " MHz");

// Interval in microsecs
Expand Down
144 changes: 144 additions & 0 deletions examples/Change_Interval/Change_Interval.ino
Original file line number Diff line number Diff line change
@@ -0,0 +1,144 @@
/****************************************************************************************************************************
Change_Interval.ino
For Teensy boards
Written by Khoi Hoang
Built by Khoi Hoang https://github.com/khoih-prog/Teensy_TimerInterrupt
Licensed under MIT license
Now even you use all these new 16 ISR-based timers,with their maximum interval practically unlimited (limited only by
unsigned long miliseconds), you just consume only one Teensy timer and avoid conflicting with other cores' tasks.
The accuracy is nearly perfect compared to software timers. The most important feature is they're ISR-based timers
Therefore, their executions are not blocked by bad-behaving functions / tasks.
This important feature is absolutely necessary for mission-critical tasks.
Based on SimpleTimer - A timer library for Arduino.
Author: mromani@ottotecnica.com
Copyright (c) 2010 OTTOTECNICA Italy
Based on BlynkTimer.h
Author: Volodymyr Shymanskyy
Version: 1.1.1
Version Modified By Date Comments
------- ----------- ---------- -----------
1.0.0 K Hoang 04/11/2020 Initial coding
1.0.1 K Hoang 06/11/2020 Add complicated example ISR_16_Timers_Array using all 16 independent ISR Timers.
1.1.1 K.Hoang 06/12/2020 Add complex examples. Bump up version to sync with other TimerInterrupt Libraries
*****************************************************************************************************************************/

/*
Notes:
Special design is necessary to share data between interrupt code and the rest of your program.
Variables usually need to be "volatile" types. Volatile tells the compiler to avoid optimizations that assume
variable can not spontaneously change. Because your function may change variables while your program is using them,
the compiler needs this hint. But volatile alone is often not enough.
When accessing shared variables, usually interrupts must be disabled. Even with volatile,
if the interrupt changes a multi-byte variable between a sequence of instructions, it can be read incorrectly.
If your data is multiple variables, such as an array and a count, usually interrupts need to be disabled
or the entire sequence of your code which accesses the data.
*/

#if !( defined(CORE_TEENSY) || defined(TEENSYDUINO) )
#error This code is designed to run on Teensy platform! Please check your Tools->Board setting.
#endif

// These define's must be placed at the beginning before #include "TeensyTimerInterrupt.h"
// Don't define Teensy_TEENSY_TIMER_INTERRUPT_DEBUG > 0. Only for special ISR debugging only. Can hang the system.
#define TEENSY_TIMER_INTERRUPT_DEBUG 0

#include "TeensyTimerInterrupt.h"

#ifndef LED_BUILTIN
#define LED_BUILTIN 13
#endif

#ifndef LED_BLUE
#define LED_BLUE 2
#endif

#ifndef LED_RED
# define LED_RED 3
#endif

// For Teensy 4.0/4.1, F_BUS_ACTUAL = 150 MHz => max period is only 55922 us (~17.9 Hz)

#define TIMER_INTERVAL_MS 10

volatile uint32_t TimerCount = 0;

// You can select Teensy Hardware Timer from TEENSY_TIMER_1 or TEENSY_TIMER_3

// Init Teensy timer TEENSY_TIMER_1
TeensyTimer ITimer(TEENSY_TIMER_1);

void printResult(uint32_t currTime)
{
Serial.printf("Time = %ld, TimerCount = %lu\n", currTime, TimerCount);
}

void TimerHandler(void)
{
static bool toggle = false;

// Flag for checking to be sure ISR is working as SErial.print is not OK here in ISR
TimerCount++;

//timer interrupt toggles pin LED_BUILTIN
digitalWrite(LED_BUILTIN, toggle);
toggle = !toggle;
}

void setup()
{
pinMode(LED_BUILTIN, OUTPUT);

Serial.begin(115200);
while (!Serial);

delay(100);

Serial.printf("\nStarting Change_Interval on %s\n", BOARD_NAME);
Serial.println(TEENSY_TIMER_INTERRUPT_VERSION);
Serial.println("CPU Frequency = " + String(F_CPU / 1000000) + " MHz");

// Interval in microsecs
if (ITimer.attachInterruptInterval(TIMER_INTERVAL_MS * 1000, TimerHandler))
{
Serial.printf("Starting ITimer OK, millis() = %ld\n", millis());
}
else
Serial.println("Can't set ITimer. Select another freq. or timer");
}

#define CHECK_INTERVAL_MS 10000L
#define CHANGE_INTERVAL_MS 20000L

void loop()
{
static uint32_t lastTime = 0;
static uint32_t lastChangeTime = 0;
static uint32_t currTime;
static uint32_t multFactor = 0;

currTime = millis();

if (currTime - lastTime > CHECK_INTERVAL_MS)
{
printResult(currTime);
lastTime = currTime;

if (currTime - lastChangeTime > CHANGE_INTERVAL_MS)
{
//setInterval(unsigned long interval, timerCallback callback)
multFactor = (multFactor + 1) % 2;

ITimer.setInterval(TIMER_INTERVAL_MS * 1000 * (multFactor + 1), TimerHandler);

Serial.printf("Changing Interval, Timer = %lu\n", TIMER_INTERVAL_MS * (multFactor + 1));

lastChangeTime = currTime;
}
}
}
5 changes: 3 additions & 2 deletions examples/ISR_16_Timers_Array/ISR_16_Timers_Array.ino
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,13 @@
Based on BlynkTimer.h
Author: Volodymyr Shymanskyy
Version: 1.0.1
Version: 1.1.1
Version Modified By Date Comments
------- ----------- ---------- -----------
1.0.0 K Hoang 04/11/2020 Initial coding
1.0.1 K Hoang 06/11/2020 Add complicated example ISR_16_Timers_Array using all 16 independent ISR Timers.
1.1.1 K.Hoang 06/12/2020 Add complex examples. Bump up version to sync with other TimerInterrupt Libraries
*****************************************************************************************************************************/
/*
Notes:
Expand Down Expand Up @@ -412,7 +413,7 @@ void setup()
while (!Serial);

Serial.println("\nStarting ISR_16_Timers_Array on " + String(BOARD_NAME));
Serial.println("Version : " + String(TEENSY_TIMER_INTERRUPT_VERSION));
Serial.println(TEENSY_TIMER_INTERRUPT_VERSION);
Serial.println("CPU Frequency = " + String(F_CPU / 1000000) + " MHz");

// Interval in microsecs
Expand Down
Loading

0 comments on commit 0cf9906

Please sign in to comment.