diff options
| author | Apexo | 2026-03-29 11:29:23 +0200 |
|---|---|---|
| committer | Apexo | 2026-03-29 11:29:29 +0200 |
| commit | 3e557eb872547c944430e77054643edc9d3582bb (patch) | |
| tree | 78ef4505e248d3cc708477c2be1dc357f63a55c5 /src/peripherals/avrdx-adc.ts | |
| parent | fix comments (diff) | |
| download | anduril-sim-3e557eb872547c944430e77054643edc9d3582bb.tar.gz anduril-sim-3e557eb872547c944430e77054643edc9d3582bb.tar.bz2 anduril-sim-3e557eb872547c944430e77054643edc9d3582bb.zip | |
unify import stlyle
Diffstat (limited to '')
| -rw-r--r-- | src/peripherals/avrdx-adc.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/peripherals/avrdx-adc.ts b/src/peripherals/avrdx-adc.ts index 34a6f24..dc95d86 100644 --- a/src/peripherals/avrdx-adc.ts +++ b/src/peripherals/avrdx-adc.ts @@ -1,8 +1,8 @@ // AVR-Dx ADC0 peripheral // 12-bit ADC with accumulation, free-running mode, and multiple input sources. -import { type CPU, type AVRInterruptConfig } from 'avr8js/cpu/cpu'; -import { type AVRDxVREF } from './avrdx-vref'; +import type { CPU, AVRInterruptConfig } from 'avr8js/cpu/cpu'; +import type { AVRDxVREF } from './avrdx-vref'; const CTRLA = 0x0000; const CTRLB = 0x0001; |
