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

Commit

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

1. Add STM32_TimerInterrupt Library
  • Loading branch information
khoih-prog authored Nov 13, 2020
1 parent c5f7872 commit 73e09a0
Show file tree
Hide file tree
Showing 78 changed files with 2,460 additions and 187 deletions.
373 changes: 365 additions & 8 deletions README.md

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion examples/AVR/Argument_Complex/Argument_Complex.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
//These define's must be placed at the beginning before #include "TimerInterrupt.h"
#define TIMER_INTERRUPT_DEBUG 0
Expand Down
3 changes: 2 additions & 1 deletion examples/AVR/Argument_None/Argument_None.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
//These define's must be placed at the beginning before #include "TimerInterrupt.h"
#define TIMER_INTERRUPT_DEBUG 0
Expand Down
3 changes: 2 additions & 1 deletion examples/AVR/Argument_Simple/Argument_Simple.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
//These define's must be placed at the beginning before #include "TimerInterrupt_Generic.h"
#define TIMER_INTERRUPT_DEBUG 0
Expand Down
3 changes: 2 additions & 1 deletion examples/AVR/ISR_RPM_Measure/ISR_RPM_Measure.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/* RPM Measuring uses high frequency hardware timer 1Hz == 1ms) to measure the time from of one rotation, in ms
then convert to RPM. One rotation is detected by reading the state of a magnetic REED SW or IR LED Sensor
Expand Down
3 changes: 2 additions & 1 deletion examples/AVR/ISR_Switch/ISR_Switch.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/****************************************************************************************************************************
ISR_Switch demontrates the use of ISR to avoid being blocked by other CPU-monopolizing task
Expand Down
3 changes: 2 additions & 1 deletion examples/AVR/ISR_Timer_Complex/ISR_Timer_Complex.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/

/****************************************************************************************************************************
Expand Down
3 changes: 2 additions & 1 deletion examples/AVR/ISR_Timer_Switch/ISR_Timer_Switch.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/****************************************************************************************************************************
ISR_Timer_Switch demontrates the use of ISR combining with Timer Interrupt to avoid being blocked by
Expand Down
3 changes: 2 additions & 1 deletion examples/AVR/ISR_Timer_Switches/ISR_Timer_Switches.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/****************************************************************************************************************************
ISR_Timer_Switches demontrates the use of ISR combining with Timer Interrupt to avoid being blocked by
Expand Down
3 changes: 2 additions & 1 deletion examples/AVR/RPM_Measure/RPM_Measure.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/* RPM Measuring uses high frequency hardware timer 1Hz == 1ms) to measure the time from of one rotation, in ms
then convert to RPM. One rotation is detected by reading the state of a magnetic REED SW or IR LED Sensor
Expand Down
3 changes: 2 additions & 1 deletion examples/AVR/SwitchDebounce/SwitchDebounce.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/****************************************************************************************************************************
Switch Debouncing uses high frequency hardware timer 50Hz == 20ms) to measure the time from the SW is pressed,
Expand Down
3 changes: 2 additions & 1 deletion examples/AVR/TimerDuration/TimerDuration.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/

//These define's must be placed at the beginning before #include "TimerInterrupt.h"
Expand Down
3 changes: 2 additions & 1 deletion examples/AVR/TimerInterruptTest/TimerInterruptTest.ino
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/

//These define's must be placed at the beginning before #include "TimerInterrupt.h"
Expand Down
3 changes: 2 additions & 1 deletion examples/ESP32/Argument_None/Argument_None.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/

/*
Expand Down
3 changes: 2 additions & 1 deletion examples/ESP32/ISR_RPM_Measure/ISR_RPM_Measure.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/*
Notes:
Expand Down
3 changes: 2 additions & 1 deletion examples/ESP32/ISR_Switch/ISR_Switch.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/* Notes:
Special design is necessary to share data between interrupt code and the rest of your program.
Expand Down
3 changes: 2 additions & 1 deletion examples/ESP32/ISR_Timer_4_Switches/ISR_Timer_4_Switches.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/* Notes:
Special design is necessary to share data between interrupt code and the rest of your program.
Expand Down
3 changes: 2 additions & 1 deletion examples/ESP32/ISR_Timer_Complex/ISR_Timer_Complex.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/*
Notes:
Expand Down
3 changes: 2 additions & 1 deletion examples/ESP32/ISR_Timer_Switch/ISR_Timer_Switch.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/* Notes:
Special design is necessary to share data between interrupt code and the rest of your program.
Expand Down
3 changes: 2 additions & 1 deletion examples/ESP32/ISR_Timer_Switches/ISR_Timer_Switches.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/* Notes:
Special design is necessary to share data between interrupt code and the rest of your program.
Expand Down
3 changes: 2 additions & 1 deletion examples/ESP32/RPM_Measure/RPM_Measure.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/*
Notes:
Expand Down
3 changes: 2 additions & 1 deletion examples/ESP32/SwitchDebounce/SwitchDebounce.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/*
Notes:
Expand Down
3 changes: 2 additions & 1 deletion examples/ESP32/TimerInterruptTest/TimerInterruptTest.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/*
Notes:
Expand Down
3 changes: 2 additions & 1 deletion examples/ESP8266/Argument_None/Argument_None.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/

/* Notes:
Expand Down
3 changes: 2 additions & 1 deletion examples/ESP8266/ISR_RPM_Measure/ISR_RPM_Measure.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/

/* Notes:
Expand Down
3 changes: 2 additions & 1 deletion examples/ESP8266/ISR_Switch/ISR_Switch.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/* Notes:
Special design is necessary to share data between interrupt code and the rest of your program.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/* Notes:
Special design is necessary to share data between interrupt code and the rest of your program.
Expand Down
3 changes: 2 additions & 1 deletion examples/ESP8266/ISR_Timer_Complex/ISR_Timer_Complex.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/* Notes:
Special design is necessary to share data between interrupt code and the rest of your program.
Expand Down
3 changes: 2 additions & 1 deletion examples/ESP8266/ISR_Timer_Switch/ISR_Timer_Switch.ino
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,12 @@
Built by Khoi Hoang https://github.com/khoih-prog/TimerInterrupt_Generic
Licensed under MIT license
Version: 1.1.0
Version: 1.2.0
Version Modified By Date Comments
------- ----------- ---------- -----------
1.1.0 K Hoang 10/11/2020 Initial Super-Library coding to merge all TimerInterrupt Libraries
1.2.0 K Hoang 12/11/2020 Add STM32_TimerInterrupt Library
*****************************************************************************************************************************/
/* Notes:
Special design is necessary to share data between interrupt code and the rest of your program.
Expand Down
Loading

0 comments on commit 73e09a0

Please sign in to comment.