From 524ff71f2abf8c9032e5cf629c52262c72cc7524 Mon Sep 17 00:00:00 2001 From: Khoi Hoang <57012152+khoih-prog@users.noreply.github.com> Date: Sat, 27 Aug 2022 14:55:21 -0400 Subject: [PATCH] v1.0.1 for bug related to TCB0 ### Release v1.0.1 1. Fix bug giving error when using TCB0 (`USE_TIMER_0 == true`) 2. Default to use TCB0 for boards having only 1 TCB Timer, such as `ATtiny817`, `ATtiny807` --- README.md | 1 + changelog.md | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 326383d..c3f1089 100644 --- a/README.md +++ b/README.md @@ -267,6 +267,7 @@ Check the new [**multiFileProject** example](examples/multiFileProject) for a `H TCB0-TCB1 are 16-bit timers The ATtiny boards, such as `ATtiny3217`, `ATtiny1617`, will have only maximum 2 TCB timers, (TCB0-TCB1). + The ATtiny boards, such as `ATtiny817`, will have only maximum 1 TCB timer, (TCB0). The number of TCB timers will be automatically configured by the library. diff --git a/changelog.md b/changelog.md index 3636397..4eb4427 100644 --- a/changelog.md +++ b/changelog.md @@ -17,7 +17,7 @@ ## Changelog -### Initial Release v1.0.1 +### Release v1.0.1 1. Fix bug giving error when using TCB0 (`USE_TIMER_0 == true`) 2. Default to use TCB0 for boards having only 1 TCB Timer, such as `ATtiny817`, `ATtiny807`