timer set to unsigned

This commit is contained in:
Jason Short 2012-01-04 17:31:06 -08:00
parent 53e4880cc1
commit a8af509517

View File

@ -817,7 +817,7 @@ void setup() {
void loop() void loop()
{ {
int32_t timer = micros(); uint32_t timer = micros();
// We want this to execute fast // We want this to execute fast
// ---------------------------- // ----------------------------
if ((timer - fast_loopTimer) >= 5000) { if ((timer - fast_loopTimer) >= 5000) {