diff options
| author | Apexo | 2026-03-29 11:29:01 +0200 |
|---|---|---|
| committer | Apexo | 2026-03-29 11:29:01 +0200 |
| commit | 158116ad19455135b59929f4cdb569e55947ebbb (patch) | |
| tree | 7517d591d352a19069146b23633c691950fc5286 /src/peripherals/avrdx-rstctrl.ts | |
| parent | avr8js submodule (diff) | |
| download | anduril-sim-158116ad19455135b59929f4cdb569e55947ebbb.tar.gz anduril-sim-158116ad19455135b59929f4cdb569e55947ebbb.tar.bz2 anduril-sim-158116ad19455135b59929f4cdb569e55947ebbb.zip | |
cleanup exports
Diffstat (limited to 'src/peripherals/avrdx-rstctrl.ts')
| -rw-r--r-- | src/peripherals/avrdx-rstctrl.ts | 6 |
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 */ |
