From fc3ff74c16fad7904e2c34f3db8f2a1fd41147c5 Mon Sep 17 00:00:00 2001 From: HubertH <51236138+hubertushirsch@users.noreply.github.com> Date: Wed, 14 Feb 2024 23:16:25 +0100 Subject: [PATCH] Added some comments for clearnes --- afterburner.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/afterburner.ino b/afterburner.ino index 11ac462..be8607f 100644 --- a/afterburner.ino +++ b/afterburner.ino @@ -851,7 +851,7 @@ static void setVPP(char on) { } // 36 <= vpp <=66 ==> v = 0 ... 15 ==> VPP_9V0 ... VPP_16V5 v = (vpp >> 1) - 18; // 18: 2 * 9V, resolution 0.5V (not 0.25V) hence 'vpp >> 1' -#if 1 +#if 0 Serial.print(F("setVPP ")); Serial.print(vpp); Serial.print(F(" index="));