From 9ce22e49cf1110d0a8c1943877dc32e6568354cc Mon Sep 17 00:00:00 2001 From: Uri Shaked Date: Tue, 11 Feb 2025 10:31:57 +0200 Subject: chore(deps): upgrade prettier reformat all code with the new prettier version --- src/peripherals/gpio.ts | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'src/peripherals/gpio.ts') diff --git a/src/peripherals/gpio.ts b/src/peripherals/gpio.ts index 0da9d50..92435b9 100644 --- a/src/peripherals/gpio.ts +++ b/src/peripherals/gpio.ts @@ -219,7 +219,10 @@ export class AVRIOPort { private lastPin: u8 = 0; openCollector: u8 = 0; - constructor(private cpu: CPU, readonly portConfig: Readonly) { + constructor( + private cpu: CPU, + readonly portConfig: Readonly, + ) { cpu.gpioPorts.add(this); cpu.gpioByPort[portConfig.PORT] = this; @@ -259,7 +262,7 @@ export class AVRIOPort { enableRegister: externalConfig.EIMSK, enableMask: 1 << externalConfig.index, } - : null + : null, ); const EICR = new Set(externalInterrupts.map((item) => item?.EICR)); for (const EICRx of EICR) { -- cgit v1.2.3