micros() step size with due improved?

Hello,

what is the step size of the mircos() command on the Arduino due?

Still 4µs?
Or was it improved because of the more powerful Microcontroller on the Arduino Due Board?

Another little question:
Does the "T020040 - TinkerKit Mega Sensor Shield V.2" works fine with the Due and all of the TinkerKit Sensors?

Thanks

HOw about a small program to test the granularity? (code not tested)

unsigned long x[100];
void setup()
{
  Serial.begin(9600);
  for (inti=0;i<100;i++)
  {
    x[i] = micros();
  }
  for (inti=0;i<100;i++)
  {
    Serial.println(x[i], DEC);
  }
} 

void loop()
{
}

Please post the output...

it is improved down to 1us.. but of course not below :wink:

Thank you for that information,
that was my criteria to buy a Due :slight_smile:

Sorry for not mentioning that i do not have a Due until now. :blush:

Also i would like to Order the "T020040 - TinkerKit Mega Sensor Shield V.2". But only if it works with the Due and Sensors.

Does anybody run this combination?