Hey guys.Soo... my new Arduino DUE just arrived! Super happy? Nooo.
After reading this [
http://arduino.cc/en/Products/Counterfeit] page I was sure, I bought an fake arduino board.
I decided to run a simple test:
void loop() {
digitalWrite(led, HIGH);
delayMicroseconds(10);
digitalWrite(led, LOW);
delayMicroseconds(50);
}
Now an image of the results:

[20 uSec/Div ~QuantAsylum QA100]
delayMicroseconds(10); > took 14,0us
delayMicroseconds(50); > took 54,5us
My question is: is that a normal result?
The board was powered via the usb directly connected to my computer.
Is there any other test that i can run to see if this board is at least equal in the hardware?
Thanks guys