Skip to content

Commit

Permalink
upd
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexGyver committed Nov 17, 2020
1 parent 3c6094f commit 2a52d24
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions GyverTimers/GyverTimers.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
* v1.5 - исправлен restart и resume *
* v1.6 - phase shift вынесен отдельным методом *
* v1.7 - поправлена документация *
* v1.8 - исправлен баг с макс периодом *
*************************************************************************************/

/*
Expand Down Expand Up @@ -87,8 +88,8 @@ Timer5 | 16 бит | 0.24 Гц - 1 МГц | 4 200 000.. 1 мкс | CHANNEL_A |
phaseShift(источник, фаза) - сдвинуть фазу канала на 0-360 градусов (у 8 бит таймеров двигается только канал B)
*/

#define MAX_PERIOD_8 (1000000UL / F_CPU) * (1024UL * 256UL) // 16384 (61 Гц) на 16 МГц
#define MAX_PERIOD_16 (1000000UL / F_CPU) * (1024UL * 65536UL) // 4194304 (0.24 Гц) на 16 МГц
#define MAX_PERIOD_8 (1000000UL * 1024UL / F_CPU * 256UL) // 16384 (61 Гц) на 16 МГц
#define MAX_PERIOD_16 (1000000UL * 1024UL / F_CPU * 65536UL) // 4194304 (0.24 Гц) на 16 МГц

#pragma once
#include <Arduino.h>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -743,7 +743,7 @@ parseFloat | 1108 | 366 | 742

<a id="GyverTimers"></a>
![Logo](/logos/timerslogo.png)
### GyverTimers v1.7 [СКАЧАТЬ](https://github.com/AlexGyver/GyverLibs/releases/download/GyverTimers/GyverTimers.zip), [ДОКУМЕНТАЦИЯ](https://alexgyver.ru/GyverTimers/)
### GyverTimers v1.8 [СКАЧАТЬ](https://github.com/AlexGyver/GyverLibs/releases/download/GyverTimers/GyverTimers.zip), [ДОКУМЕНТАЦИЯ](https://alexgyver.ru/GyverTimers/)
Настройка и контроль прерываний по аппаратным таймерам:
- Поддерживаются все три таймера на ATmega328 и шесть таймеров на ATmega2560;
- Настройка периода (мкс) и частоты (Гц) прерываний:
Expand Down

0 comments on commit 2a52d24

Please sign in to comment.