diff options
| author | Apexo | 2026-03-29 11:29:34 +0200 |
|---|---|---|
| committer | Apexo | 2026-03-29 11:29:34 +0200 |
| commit | 168da94efefa1fd84aed52bcf4eabd8094d36060 (patch) | |
| tree | 4244d660c2325cd59fc8326d19ce4f977eb8c624 /src/peripherals | |
| parent | unify import stlyle (diff) | |
| download | anduril-sim-168da94efefa1fd84aed52bcf4eabd8094d36060.tar.gz anduril-sim-168da94efefa1fd84aed52bcf4eabd8094d36060.tar.bz2 anduril-sim-168da94efefa1fd84aed52bcf4eabd8094d36060.zip | |
cleanup
Diffstat (limited to '')
| -rw-r--r-- | src/peripherals/avrdx-wdt.ts | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/src/peripherals/avrdx-wdt.ts b/src/peripherals/avrdx-wdt.ts index f657fcb..15b1db0 100644 --- a/src/peripherals/avrdx-wdt.ts +++ b/src/peripherals/avrdx-wdt.ts @@ -8,15 +8,5 @@ import type { CPU } from 'avr8js/cpu/cpu'; export class AVRDxWDT { constructor(cpu: CPU, base: number) { - // firmware writes 0 to disable WDT. We need a write hook so it doesn't crash. - // cpu.writeHooks[base + CTRLA] = (value) => { - // this.cpu.data[base + CTRLA] = value; - // return true; - // }; - - // cpu.writeHooks[base + STATUS] = (value) => { - // this.cpu.data[base + STATUS] = value; - // return true; - // }; } } |
