From 82f9fa506e252476a07367ec58f898c6a1b4f12f Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Sat, 14 Feb 2026 20:04:24 +0200 Subject: feat(timer): ATtiny Timer/Counter1 #143 close #143 --- src/index.ts | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/index.ts') 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'; -- cgit v1.2.3