I am wondering how you change the analog prescale factor on the the Arduino nano 33 BLE. I have seen this method of speeding up analog read many places but it doesn't seem to work on the 33 BLE.
Code:
const int mic1Pin = A0;
int time1 = 0;
int time2 = 0;
int mic = 0;
unfortunately this isn't much better than the 20us that it normally gets and i'm a little confused because its saying that the acquire time is 3us and i'm assuming that the for loop does not take 17us so i'm not sure where the delay is taking place.