From 158116ad19455135b59929f4cdb569e55947ebbb Mon Sep 17 00:00:00 2001 From: Apexo Date: Sun, 29 Mar 2026 11:29:01 +0200 Subject: cleanup exports --- src/peripherals/avrdx-rstctrl.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/peripherals/avrdx-rstctrl.ts') 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 */ -- cgit v1.2.3