aboutsummaryrefslogtreecommitdiff
path: root/src/index.ts
diff options
context:
space:
mode:
authorUri Shaked2020-07-16 19:34:28 +0300
committerUri Shaked2020-07-16 19:51:59 +0300
commit3685e1a9b43f8c79d1e0a5554a1a15d4d0c77142 (patch)
tree365bfa8634f75c1ef4fc84ecbc4ab290f4d2734a /src/index.ts
parenttest(timer): remove stray console.log (diff)
downloadavr8js-3685e1a9b43f8c79d1e0a5554a1a15d4d0c77142.tar.gz
avr8js-3685e1a9b43f8c79d1e0a5554a1a15d4d0c77142.tar.bz2
avr8js-3685e1a9b43f8c79d1e0a5554a1a15d4d0c77142.zip
feat(eeprom): implement EEPROM peripheral
close #15
Diffstat (limited to 'src/index.ts')
-rw-r--r--src/index.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/index.ts b/src/index.ts
index 8db88f9..0a9335e 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -26,4 +26,11 @@ export {
PinState,
} from './peripherals/gpio';
export { AVRUSART, usart0Config } from './peripherals/usart';
+export {
+ AVREEPROM,
+ AVREEPROMConfig,
+ EEPROMBackend,
+ EEPROMMemoryBackend,
+ eepromConfig,
+} from './peripherals/eeprom';
export * from './peripherals/twi';