aboutsummaryrefslogtreecommitdiff
path: root/src/index.ts
diff options
context:
space:
mode:
authorUri Shaked2026-02-14 20:04:24 +0200
committerUri Shaked2026-02-14 20:04:24 +0200
commit82f9fa506e252476a07367ec58f898c6a1b4f12f (patch)
tree19326eee87381124845d8d6789e40a5558a9dc70 /src/index.ts
parentci: remove node 18 (diff)
downloadavr8js-82f9fa506e252476a07367ec58f898c6a1b4f12f.tar.gz
avr8js-82f9fa506e252476a07367ec58f898c6a1b4f12f.tar.bz2
avr8js-82f9fa506e252476a07367ec58f898c6a1b4f12f.zip
feat(timer): ATtiny Timer/Counter1 #143
close #143
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts
index 9f8d27a..f951897 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -47,6 +47,8 @@ export { AVRSPI, spiConfig } from './peripherals/spi';
export type { SPIConfig, SPITransferCallback } from './peripherals/spi';
export { AVRTimer, timer0Config, timer1Config, timer2Config } from './peripherals/timer';
export type { AVRTimerConfig } from './peripherals/timer';
+export { ATtinyTimer1, attinyTimer1Config } from './peripherals/timer-attiny';
+export type { ATtinyTimer1Config } from './peripherals/timer-attiny';
export * from './peripherals/twi';
export { AVRUSART, usart0Config } from './peripherals/usart';
export { AVRUSI } from './peripherals/usi';