diff options
| author | Uri Shaked | 2021-09-10 21:05:21 +0300 |
|---|---|---|
| committer | GitHub | 2021-09-10 21:05:21 +0300 |
| commit | ec1346b8a9766f95ff8aae7a3e6abf61307a7d7c (patch) | |
| tree | 95973ae705dffcb28930bbd4d189f21d8627d9cb /src/index.ts | |
| parent | feat(watchdog): implement watchdog timer #106 (diff) | |
| download | avr8js-ec1346b8a9766f95ff8aae7a3e6abf61307a7d7c.tar.gz avr8js-ec1346b8a9766f95ff8aae7a3e6abf61307a7d7c.tar.bz2 avr8js-ec1346b8a9766f95ff8aae7a3e6abf61307a7d7c.zip | |
feat(adc): ADC peripheral #13
Diffstat (limited to 'src/index.ts')
| -rw-r--r-- | src/index.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts index 8ea70d2..15cc3fa 100644 --- a/src/index.ts +++ b/src/index.ts @@ -8,6 +8,16 @@ export { CPU, ICPU, CPUMemoryHook, CPUMemoryHooks } from './cpu/cpu'; export { avrInstruction } from './cpu/instruction'; export { avrInterrupt } from './cpu/interrupt'; export { + ADCConfig, + adcConfig, + ADCMuxConfiguration, + ADCMuxInput, + ADCMuxInputType, + ADCReference, + atmega328Channels, + AVRADC, +} from './peripherals/adc'; +export { AVRTimer, AVRTimerConfig, timer0Config, |
