Maximum pin toggle speed

@selfonlypath: that number is TraumaPony's benchmark. Smaller numbers are better, meaning digitalWrite is running faster.

The number is the elapsed microseconds to perform several different digitalWrites 10000 times. Just copy-n-paste TraumaPony's sketch and run it on your board, and you'll see a number in the Serial Monitor. If you have LEDs connected to those pins, they will blink. If you're using a board with different pinout from the '168 or '328 based Arduino, edit the pin numbers so the two pwm pins are ones with PWM and others aren't.

Also, it looks like I was incorrect about needing "static". In this case, the complier does seem to be able to treat those numbers as compile time constants. I have seen it fail to do so in other cases, and honestly I do not fully understand why it would be different. I tried both ways and even read through disassembly of the compiler generated code, and static does not make any difference in this case.