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

Commit b1ea618

Browse files
authored
Update HOWTO set Hardware Timer Frequency
Update README to show HOWTO Set Hardware Timer Frequency.
1 parent 400bd7a commit b1ea618

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ Before using any Timer, you have to make sure the Timer has not been used by any
265265

266266
### 1. Using only Hardware Timer directly
267267

268-
#### 1.1 Init Hardware Timer
268+
### 1.1 Init Hardware Timer
269269

270270
```
271271
// Select the timers you're using, here ITimer1
@@ -279,7 +279,7 @@ Before using any Timer, you have to make sure the Timer has not been used by any
279279
ITimer1.init();
280280
```
281281

282-
#### 1.2 Set Hardware Timer Interval and attach Timer Interrupt Handler function
282+
### 1.2 Set Hardware Timer Interval and attach Timer Interrupt Handler function
283283

284284
Use one of these functions with **interval in unsigned long milliseconds**
285285

@@ -319,7 +319,7 @@ void setup()
319319
}
320320
```
321321

322-
#### 1.3 Set Hardware Timer Frequency and attach Timer Interrupt Handler function
322+
### 1.3 Set Hardware Timer Frequency and attach Timer Interrupt Handler function
323323

324324
Use one of these functions with **frequency in float Hz**
325325

@@ -381,7 +381,7 @@ The 16 ISR_based Timers, designed for long timer intervals, only support using *
381381
ISR_Timer ISR_Timer2;
382382
```
383383

384-
#### 2.3 Set Hardware Timer Interval and attach Timer Interrupt Handler functions
384+
### 2.3 Set Hardware Timer Interval and attach Timer Interrupt Handler functions
385385

386386
```
387387
void TimerHandler()

0 commit comments

Comments
 (0)