summaryrefslogtreecommitdiff
path: root/src/peripherals/avrdx-rstctrl.ts
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/peripherals/avrdx-rstctrl.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/peripherals/avrdx-rstctrl.ts b/src/peripherals/avrdx-rstctrl.ts
index 370b9c3..ce02552 100644
--- a/src/peripherals/avrdx-rstctrl.ts
+++ b/src/peripherals/avrdx-rstctrl.ts
@@ -4,9 +4,9 @@
import { type CPU } from 'avr8js/cpu/cpu';
import { type AVRDxCCP } from './avrdx-ccp';
-export const RSTFR = 0;
-export const SWRR = 1;
-export const SWRST_bm = 0x01;
+const RSTFR = 0;
+const SWRR = 1;
+const SWRST_bm = 0x01;
export class AVRDxRSTCTRL {
/** Set this callback to handle software resets */