From ca96ec1ab43979e75c8a551e2aaddda8ad4b9e06 Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Thu, 21 Nov 2019 17:09:40 +0200 Subject: feat: initial timer implementation 8-bit timers basic functionality + tests: 1. basic counting + prescaler 2. timer overflow 3. timer overflow interrupt --- src/index.ts | 1 + 1 file changed, 1 insertion(+) (limited to 'src/index.ts') 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'; -- cgit v1.2.3