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

Commit c08d9af

Browse files
authored
Update README.md and useallman astyle
1 parent 339e91e commit c08d9af

File tree

19 files changed

+382
-183
lines changed

19 files changed

+382
-183
lines changed

CONTRIBUTING.md

+23-2
Original file line numberDiff line numberDiff line change
@@ -30,24 +30,45 @@ Arduino IDE version: v1.8.19
3030
ESP8266 Core Version v3.0.2
3131
ESP8266_NODEMCU
3232
OS: Ubuntu 20.04 LTS
33-
Linux xy-Inspiron-3593 5.13.0-35-generic #40~20.04.1-Ubuntu SMP Mon Mar 7 09:18:32 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
33+
Linux xy-Inspiron-3593 5.15.0-52-generic #58~20.04.1-Ubuntu SMP Thu Oct 13 13:09:46 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux
3434
3535
Context:
36-
I encountered a crash while trying to use the Timer Interrupt.
36+
I encountered a crash while trying to use the library
3737
3838
Steps to reproduce:
3939
1. ...
4040
2. ...
4141
3. ...
4242
4. ...
4343
```
44+
45+
---
46+
4447
### Sending Feature Requests
4548

4649
Feel free to post feature requests. It's helpful if you can explain exactly why the feature would be useful.
4750

4851
There are usually some outstanding feature requests in the [existing issues list](https://github.com/khoih-prog/ESP8266TimerInterrupt/issues?q=is%3Aopen+is%3Aissue+label%3Aenhancement), feel free to add comments to them.
4952

53+
---
54+
5055
### Sending Pull Requests
5156

5257
Pull Requests with changes and fixes are also welcome!
5358

59+
Please use the `astyle` to reformat the updated library code as follows (demo for Ubuntu Linux)
60+
61+
1. Change directory to the library GitHub
62+
63+
```
64+
xy@xy-Inspiron-3593:~$ cd Arduino/xy/ESP8266TimerInterrupt_GitHub/
65+
xy@xy-Inspiron-3593:~/Arduino/xy/ESP8266TimerInterrupt_GitHub$
66+
```
67+
68+
2. Issue astyle command
69+
70+
```
71+
xy@xy-Inspiron-3593:~/Arduino/xy/ESP8266TimerInterrupt_GitHub$ bash utils/restyle.sh
72+
```
73+
74+

README.md

+12-9
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,11 @@
66
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](#Contributing)
77
[![GitHub issues](https://img.shields.io/github/issues/khoih-prog/ESP8266TimerInterrupt.svg)](http://github.com/khoih-prog/ESP8266TimerInterrupt/issues)
88

9+
910
<a href="https://www.buymeacoffee.com/khoihprog6" title="Donate to my libraries using BuyMeACoffee"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Donate to my libraries using BuyMeACoffee" style="height: 50px !important;width: 181px !important;" ></a>
1011
<a href="https://www.buymeacoffee.com/khoihprog6" title="Donate to my libraries using BuyMeACoffee"><img src="https://img.shields.io/badge/buy%20me%20a%20coffee-donate-orange.svg?logo=buy-me-a-coffee&logoColor=FFDD00" style="height: 20px !important;width: 200px !important;" ></a>
12+
<a href="https://profile-counter.glitch.me/khoih-prog/count.svg" title="Total khoih-prog Visitor count"><img src="https://profile-counter.glitch.me/khoih-prog/count.svg" style="height: 30px;width: 200px;"></a>
13+
<a href="https://profile-counter.glitch.me/khoih-prog-ESP8266TimerInterrupt/count.svg" title="ESP8266TimerInterrupt Visitor count"><img src="https://profile-counter.glitch.me/khoih-prog-ESP8266TimerInterrupt/count.svg" style="height: 30px;width: 200px;"></a>
1114

1215
---
1316
---
@@ -180,14 +183,14 @@ The current library implementation, using `xyz-Impl.h` instead of standard `xyz.
180183

181184
You can use
182185

183-
```
186+
```cpp
184187
#include "ESP8266TimerInterrupt.h" //https://github.com/khoih-prog/ESP8266TimerInterrupt
185188
#include "ESP8266_ISR_Timer.hpp" //https://github.com/khoih-prog/ESP8266TimerInterrupt
186189
```
187190

188191
in many files. But be sure to use the following `#include <ESP8266_ISR_Timer.h>` **in just 1 `.h`, `.cpp` or `.ino` file**, which must **not be included in any other file**, to avoid `Multiple Definitions` Linker Error
189192

190-
```
193+
```cpp
191194
// To be included only in main(), .ino with setup() to avoid `Multiple Definitions` Linker Error
192195
#include "ESP8266_ISR_Timer.h" //https://github.com/khoih-prog/ESP8266TimerInterrupt
193196
```
@@ -260,7 +263,7 @@ Using 256 prescaler, maximum Timer1 interval is only 26.843542 seconds !!!
260263

261264
### 1.1 Init Hardware Timer
262265

263-
```
266+
```cpp
264267
// Select a Timer Clock
265268
#define USING_TIM_DIV1 false // for shortest and most accurate timer
266269
#define USING_TIM_DIV16 false // for medium time and medium accurate timer
@@ -274,7 +277,7 @@ ESP8266Timer ITimer;
274277

275278
Use one of these functions with **interval in unsigned long milliseconds**
276279

277-
```
280+
```cpp
278281
// interval (in microseconds)
279282
bool setInterval(unsigned long interval, timer_callback callback)
280283

@@ -284,7 +287,7 @@ bool attachInterruptInterval(unsigned long interval, timer_callback callback)
284287
285288
as follows
286289
287-
```
290+
```cpp
288291
void IRAM_ATTR TimerHandler()
289292
{
290293
// Doing something here inside ISR
@@ -311,7 +314,7 @@ void setup()
311314

312315
Use one of these functions with **frequency in float Hz**
313316

314-
```
317+
```cpp
315318
// frequency (in hertz)
316319
bool setFrequency(float frequency, timer_callback callback)
317320

@@ -321,7 +324,7 @@ bool attachInterrupt(float frequency, timer_callback callback)
321324
322325
as follows
323326
324-
```
327+
```cpp
325328
void TimerHandler()
326329
{
327330
// Doing something here inside ISR
@@ -350,7 +353,7 @@ The 16 ISR_based Timers, designed for long timer intervals, only support using *
350353

351354
### 2.2 Init Hardware Timer and ISR-based Timer
352355

353-
```
356+
```cpp
354357
// Select a Timer Clock
355358
#define USING_TIM_DIV1 false // for shortest and most accurate timer
356359
#define USING_TIM_DIV16 false // for medium time and medium accurate timer
@@ -368,7 +371,7 @@ ESP8266_ISR_Timer ISR_Timer;
368371

369372
### 2.3 Set Hardware Timer Interval and attach Timer Interrupt Handler functions
370373

371-
```
374+
```cpp
372375
void IRAM_ATTR TimerHandler()
373376
{
374377
ISR_timer.run();

changelog.md

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@
66
[![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](#Contributing)
77
[![GitHub issues](https://img.shields.io/github/issues/khoih-prog/ESP8266TimerInterrupt.svg)](http://github.com/khoih-prog/ESP8266TimerInterrupt/issues)
88

9+
10+
<a href="https://www.buymeacoffee.com/khoihprog6" title="Donate to my libraries using BuyMeACoffee"><img src="https://cdn.buymeacoffee.com/buttons/v2/default-yellow.png" alt="Donate to my libraries using BuyMeACoffee" style="height: 50px !important;width: 181px !important;" ></a>
11+
<a href="https://www.buymeacoffee.com/khoihprog6" title="Donate to my libraries using BuyMeACoffee"><img src="https://img.shields.io/badge/buy%20me%20a%20coffee-donate-orange.svg?logo=buy-me-a-coffee&logoColor=FFDD00" style="height: 20px !important;width: 200px !important;" ></a>
12+
<a href="https://profile-counter.glitch.me/khoih-prog/count.svg" title="Total khoih-prog Visitor count"><img src="https://profile-counter.glitch.me/khoih-prog/count.svg" style="height: 30px;width: 200px;"></a>
13+
<a href="https://profile-counter.glitch.me/khoih-prog-ESP8266TimerInterrupt/count.svg" title="ESP8266TimerInterrupt Visitor count"><img src="https://profile-counter.glitch.me/khoih-prog-ESP8266TimerInterrupt/count.svg" style="height: 30px;width: 200px;"></a>
14+
915
---
1016
---
1117

examples/Argument_None/Argument_None.ino

+13-7
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ void IRAM_ATTR TimerHandler()
6363
}
6464

6565
#if (TIMER_INTERRUPT_DEBUG > 0)
66-
Serial.print("Delta ms = "); Serial.println(millis() - lastMillis);
66+
Serial.print("Delta ms = ");
67+
Serial.println(millis() - lastMillis);
6768
lastMillis = millis();
6869
#endif
6970

@@ -80,19 +81,24 @@ ESP8266Timer ITimer;
8081
void setup()
8182
{
8283
Serial.begin(115200);
83-
while (!Serial);
84-
85-
delay(300);
8684

87-
Serial.print(F("\nStarting Argument_None on ")); Serial.println(ARDUINO_BOARD);
85+
while (!Serial && millis() < 5000);
86+
87+
delay(500);
88+
89+
Serial.print(F("\nStarting Argument_None on "));
90+
Serial.println(ARDUINO_BOARD);
8891
Serial.println(ESP8266_TIMER_INTERRUPT_VERSION);
89-
Serial.print(F("CPU Frequency = ")); Serial.print(F_CPU / 1000000); Serial.println(F(" MHz"));
92+
Serial.print(F("CPU Frequency = "));
93+
Serial.print(F_CPU / 1000000);
94+
Serial.println(F(" MHz"));
9095

9196
// Interval in microsecs
9297
if (ITimer.attachInterruptInterval(TIMER_INTERVAL_MS * 1000, TimerHandler))
9398
{
9499
lastMillis = millis();
95-
Serial.print(F("Starting ITimer OK, millis() = ")); Serial.println(lastMillis);
100+
Serial.print(F("Starting ITimer OK, millis() = "));
101+
Serial.println(lastMillis);
96102
}
97103
else
98104
Serial.println(F("Can't set ITimer correctly. Select another freq. or interval"));

examples/Change_Interval/Change_Interval.ino

+20-12
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,10 @@ ESP8266Timer ITimer;
6060

6161
void printResult(uint32_t currTime)
6262
{
63-
Serial.print(F("Time = ")); Serial.print(currTime);
64-
Serial.print(F(", TimerCount = ")); Serial.println(TimerCount);
63+
Serial.print(F("Time = "));
64+
Serial.print(currTime);
65+
Serial.print(F(", TimerCount = "));
66+
Serial.println(TimerCount);
6567
}
6668

6769
void TimerHandler()
@@ -79,20 +81,25 @@ void TimerHandler()
7981
void setup()
8082
{
8183
pinMode(LED_BUILTIN, OUTPUT);
82-
84+
8385
Serial.begin(115200);
84-
while (!Serial);
8586

86-
delay(300);
87+
while (!Serial && millis() < 5000);
88+
89+
delay(500);
8790

88-
Serial.print(F("\nStarting Change_Interval on ")); Serial.println(ARDUINO_BOARD);
91+
Serial.print(F("\nStarting Change_Interval on "));
92+
Serial.println(ARDUINO_BOARD);
8993
Serial.println(ESP8266_TIMER_INTERRUPT_VERSION);
90-
Serial.print(F("CPU Frequency = ")); Serial.print(F_CPU / 1000000); Serial.println(F(" MHz"));
91-
94+
Serial.print(F("CPU Frequency = "));
95+
Serial.print(F_CPU / 1000000);
96+
Serial.println(F(" MHz"));
97+
9298
// Interval in microsecs
9399
if (ITimer.attachInterruptInterval(TIMER_INTERVAL_MS * 1000, TimerHandler))
94100
{
95-
Serial.print(F("Starting ITimer OK, millis() = ")); Serial.println(millis());
101+
Serial.print(F("Starting ITimer OK, millis() = "));
102+
Serial.println(millis());
96103
}
97104
else
98105
Serial.println(F("Can't set ITimer. Select another freq. or timer"));
@@ -119,11 +126,12 @@ void loop()
119126
{
120127
//setInterval(unsigned long interval, timerCallback callback)
121128
multFactor = (multFactor + 1) % 2;
122-
129+
123130
ITimer.setInterval(TIMER_INTERVAL_MS * 1000 * (multFactor + 1), TimerHandler);
124131

125-
Serial.print(F("Changing Interval, Timer = ")); Serial.println(TIMER_INTERVAL_MS * (multFactor + 1));
126-
132+
Serial.print(F("Changing Interval, Timer = "));
133+
Serial.println(TIMER_INTERVAL_MS * (multFactor + 1));
134+
127135
lastChangeTime = currTime;
128136
}
129137
}

examples/ISR_16_Timers_Array/ISR_16_Timers_Array.ino

+19-9
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,11 @@ typedef void (*irqCallback) ();
129129
#if (TIMER_INTERRUPT_DEBUG > 0)
130130
void printStatus(uint16_t index, unsigned long deltaMillis, unsigned long currentMillis)
131131
{
132-
Serial.print(TimerInterval[index] / 1000); Serial.print("s: Delta ms = "); Serial.print(deltaMillis);
133-
Serial.print(", ms = "); Serial.println(currentMillis);
132+
Serial.print(TimerInterval[index] / 1000);
133+
Serial.print("s: Delta ms = ");
134+
Serial.print(deltaMillis);
135+
Serial.print(", ms = ");
136+
Serial.println(currentMillis);
134137
}
135138
#endif
136139

@@ -385,28 +388,35 @@ void simpleTimerDoingSomething2s()
385388
{
386389
static unsigned long previousMillis = startMillis;
387390

388-
Serial.print(F("simpleTimerDoingSomething2s: Delta programmed ms = ")); Serial.print(SIMPLE_TIMER_MS);
389-
Serial.print(F(", actual = ")); Serial.println(millis() - previousMillis);
391+
Serial.print(F("simpleTimerDoingSomething2s: Delta programmed ms = "));
392+
Serial.print(SIMPLE_TIMER_MS);
393+
Serial.print(F(", actual = "));
394+
Serial.println(millis() - previousMillis);
390395

391396
previousMillis = millis();
392397
}
393398

394399
void setup()
395400
{
396401
Serial.begin(115200);
397-
while (!Serial);
398402

399-
delay(300);
403+
while (!Serial && millis() < 5000);
400404

401-
Serial.print(F("\nStarting ISR_16_Timers_Array on ")); Serial.println(ARDUINO_BOARD);
405+
delay(500);
406+
407+
Serial.print(F("\nStarting ISR_16_Timers_Array on "));
408+
Serial.println(ARDUINO_BOARD);
402409
Serial.println(ESP8266_TIMER_INTERRUPT_VERSION);
403-
Serial.print(F("CPU Frequency = ")); Serial.print(F_CPU / 1000000); Serial.println(F(" MHz"));
410+
Serial.print(F("CPU Frequency = "));
411+
Serial.print(F_CPU / 1000000);
412+
Serial.println(F(" MHz"));
404413

405414
// Interval in microsecs
406415
if (ITimer.attachInterruptInterval(HW_TIMER_INTERVAL_MS * 1000, TimerHandler))
407416
{
408417
startMillis = millis();
409-
Serial.print(F("Starting ITimer OK, millis() = ")); Serial.println(startMillis);
418+
Serial.print(F("Starting ITimer OK, millis() = "));
419+
Serial.println(startMillis);
410420
}
411421
else
412422
Serial.println(F("Can't set ITimer. Select another freq. or timer"));

examples/ISR_16_Timers_Array_Complex/ISR_16_Timers_Array_Complex.ino

+29-15
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ ESP8266_ISR_Timer ISR_Timer;
8282
#define LED_TOGGLE_INTERVAL_MS 2000L
8383

8484
void IRAM_ATTR TimerHandler()
85-
{
85+
{
8686
static bool toggle = false;
8787
static int timeRun = 0;
8888

@@ -290,20 +290,29 @@ void simpleTimerDoingSomething2s()
290290

291291
unsigned long currMillis = millis();
292292

293-
Serial.print(F("SimpleTimer : ")); Serial.print(SIMPLE_TIMER_MS / 1000);
294-
Serial.print(F(", ms : ")); Serial.print(currMillis);
295-
Serial.print(F(", Dms : ")); Serial.println(currMillis - previousMillis);
293+
Serial.print(F("SimpleTimer : "));
294+
Serial.print(SIMPLE_TIMER_MS / 1000);
295+
Serial.print(F(", ms : "));
296+
Serial.print(currMillis);
297+
Serial.print(F(", Dms : "));
298+
Serial.println(currMillis - previousMillis);
296299

297300
for (uint16_t i = 0; i < NUMBER_ISR_TIMERS; i++)
298301
{
299302
#if USE_COMPLEX_STRUCT
300-
Serial.print(F("Timer : ")); Serial.print(i);
301-
Serial.print(F(", programmed : ")); Serial.print(curISRTimerData[i].TimerInterval);
302-
Serial.print(F(", actual : ")); Serial.println(curISRTimerData[i].deltaMillis);
303+
Serial.print(F("Timer : "));
304+
Serial.print(i);
305+
Serial.print(F(", programmed : "));
306+
Serial.print(curISRTimerData[i].TimerInterval);
307+
Serial.print(F(", actual : "));
308+
Serial.println(curISRTimerData[i].deltaMillis);
303309
#else
304-
Serial.print(F("Timer : ")); Serial.print(i);
305-
Serial.print(F(", programmed : ")); Serial.print(TimerInterval[i]);
306-
Serial.print(F(", actual : ")); Serial.println(deltaMillis[i]);
310+
Serial.print(F("Timer : "));
311+
Serial.print(i);
312+
Serial.print(F(", programmed : "));
313+
Serial.print(TimerInterval[i]);
314+
Serial.print(F(", actual : "));
315+
Serial.println(deltaMillis[i]);
307316
#endif
308317
}
309318

@@ -315,19 +324,24 @@ void setup()
315324
pinMode(LED_BUILTIN, OUTPUT);
316325

317326
Serial.begin(115200);
318-
while (!Serial);
319327

320-
delay(300);
328+
while (!Serial && millis() < 5000);
329+
330+
delay(500);
321331

322-
Serial.print(F("\nStarting ISR_16_Timers_Array_Complex on ")); Serial.println(ARDUINO_BOARD);
332+
Serial.print(F("\nStarting ISR_16_Timers_Array_Complex on "));
333+
Serial.println(ARDUINO_BOARD);
323334
Serial.println(ESP8266_TIMER_INTERRUPT_VERSION);
324-
Serial.print(F("CPU Frequency = ")); Serial.print(F_CPU / 1000000); Serial.println(F(" MHz"));
335+
Serial.print(F("CPU Frequency = "));
336+
Serial.print(F_CPU / 1000000);
337+
Serial.println(F(" MHz"));
325338

326339
// Interval in microsecs
327340
if (ITimer.attachInterruptInterval(HW_TIMER_INTERVAL_US, TimerHandler))
328341
{
329342
startMillis = millis();
330-
Serial.print(F("Starting ITimer OK, millis() = ")); Serial.println(startMillis);
343+
Serial.print(F("Starting ITimer OK, millis() = "));
344+
Serial.println(startMillis);
331345
}
332346
else
333347
Serial.println(F("Can't set ITimer. Select another freq. or timer"));

0 commit comments

Comments
 (0)