aboutsummaryrefslogtreecommitdiff
path: root/src/index.ts
diff options
context:
space:
mode:
authorUri Shaked2021-09-10 21:05:21 +0300
committerGitHub2021-09-10 21:05:21 +0300
commitec1346b8a9766f95ff8aae7a3e6abf61307a7d7c (patch)
tree95973ae705dffcb28930bbd4d189f21d8627d9cb /src/index.ts
parentfeat(watchdog): implement watchdog timer #106 (diff)
downloadavr8js-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.ts10
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,