summaryrefslogtreecommitdiff
path: root/src/peripherals
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/peripherals/avrdx-rstctrl.ts6
-rw-r--r--src/peripherals/avrdx-rtc-pit.ts2
2 files changed, 4 insertions, 4 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 */
diff --git a/src/peripherals/avrdx-rtc-pit.ts b/src/peripherals/avrdx-rtc-pit.ts
index 101f265..15feed0 100644
--- a/src/peripherals/avrdx-rtc-pit.ts
+++ b/src/peripherals/avrdx-rtc-pit.ts
@@ -16,7 +16,7 @@ const PERIOD_gm = 0x78; // bits [6:3]
// PIT period to number of 32768Hz clock cycles
// PERIOD field is bits [6:3] of CTRLA
-export const PERIOD_CYCLES = [
+const PERIOD_CYCLES = [
0, // 0x00: OFF
4, // 0x01: CYC4
8, // 0x02: CYC8