diff options
| author | Uri Shaked | 2026-02-14 20:04:24 +0200 |
|---|---|---|
| committer | Uri Shaked | 2026-02-14 20:04:24 +0200 |
| commit | 82f9fa506e252476a07367ec58f898c6a1b4f12f (patch) | |
| tree | 19326eee87381124845d8d6789e40a5558a9dc70 /src/index.ts | |
| parent | ci: remove node 18 (diff) | |
| download | avr8js-82f9fa506e252476a07367ec58f898c6a1b4f12f.tar.gz avr8js-82f9fa506e252476a07367ec58f898c6a1b4f12f.tar.bz2 avr8js-82f9fa506e252476a07367ec58f898c6a1b4f12f.zip | |
feat(timer): ATtiny Timer/Counter1 #143
close #143
Diffstat (limited to '')
| -rw-r--r-- | src/index.ts | 2 |
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'; |
