aboutsummaryrefslogtreecommitdiff
path: root/src/index.ts
diff options
context:
space:
mode:
authorUri Shaked2019-11-21 17:09:40 +0200
committerUri Shaked2019-11-21 17:11:02 +0200
commitca96ec1ab43979e75c8a551e2aaddda8ad4b9e06 (patch)
tree6b591d80de7e00e1889b77f8fbad1eb1e493877c /src/index.ts
parentfix: typescript errors on TS < 3.7 (diff)
downloadavr8js-ca96ec1ab43979e75c8a551e2aaddda8ad4b9e06.tar.gz
avr8js-ca96ec1ab43979e75c8a551e2aaddda8ad4b9e06.tar.bz2
avr8js-ca96ec1ab43979e75c8a551e2aaddda8ad4b9e06.zip
feat: initial timer implementation
8-bit timers basic functionality + tests: 1. basic counting + prescaler 2. timer overflow 3. timer overflow interrupt
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts
index 8a474a4..94e4ecc 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -1,3 +1,4 @@
export { CPU, ICPU, ICPUMemoryHook, ICPUMemoryHooks } from './cpu';
export { avrInstruction } from './instruction';
export { avrInterrupt } from './interrupt';
+export { AVRTimer, timer0Config, timer1Config, timer2Config } from './timer';