diff options
| author | Uri Shaked | 2020-11-14 10:32:06 +0200 |
|---|---|---|
| committer | Uri Shaked | 2020-11-14 10:32:06 +0200 |
| commit | 348c553c8a05657f0476000079738945d1203973 (patch) | |
| tree | 99034c8d4e1349583f8092af236e89f3a19512fe /src/peripherals/timer.ts | |
| parent | docs: add link to ATtiny85 simulation example (diff) | |
| download | avr8js-348c553c8a05657f0476000079738945d1203973.tar.gz avr8js-348c553c8a05657f0476000079738945d1203973.tar.bz2 avr8js-348c553c8a05657f0476000079738945d1203973.zip | |
fix: AVRTimerConfig interface not exported #65
close #65
Diffstat (limited to '')
| -rw-r--r-- | src/peripherals/timer.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/peripherals/timer.ts b/src/peripherals/timer.ts index 5ba908e..5c211ba 100644 --- a/src/peripherals/timer.ts +++ b/src/peripherals/timer.ts @@ -43,7 +43,7 @@ interface TimerDividers { 7: number; } -interface AVRTimerConfig { +export interface AVRTimerConfig { bits: 8 | 16; captureInterrupt: u8; compAInterrupt: u8; |
