From 7ac455f6a3a2f84cde015ba46e0c00b2a6f81ece Mon Sep 17 00:00:00 2001
From: Albert van Dalen <albertfora@avdweb.nl>
Date: Sat, 7 Sep 2024 23:49:38 +0200
Subject: [PATCH] Delete examples/ExampleAnalogReadFast.ino

---
 examples/ExampleAnalogReadFast.ino | 18 ------------------
 1 file changed, 18 deletions(-)
 delete mode 100644 examples/ExampleAnalogReadFast.ino

diff --git a/examples/ExampleAnalogReadFast.ino b/examples/ExampleAnalogReadFast.ino
deleted file mode 100644
index 7c61746..0000000
--- a/examples/ExampleAnalogReadFast.ino
+++ /dev/null
@@ -1,18 +0,0 @@
-// http://www.avdweb.nl/arduino/libraries/fast-10-bit-adc.html
-
-#include "avdweb_AnalogReadFast.h"
-const byte adcPin = A1;
-
-#if defined(__arm__)
-analogReadResolution(12);
-//analogReadResolution(10);
-#endif
-
-void setup(void)
-{ Serial.begin(9600);
-  //analogRead(adcPin); // first analogRead is wrong
-}
-
-void loop(void)
-{ Serial.println(analogReadFast(adcPin));
-}