Browse Source

Make twi timer local to the wait function

Alex Voinea 2 years ago
parent
commit
1e0f414d41
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Firmware/twi.cpp

+ 1 - 1
Firmware/twi.cpp

@@ -62,7 +62,7 @@ static void twi_stop()
 
 static uint8_t twi_wait(uint8_t status)
 {
-  static ShortTimer timmy;
+  ShortTimer timmy;
   timmy.start();
   while(!(TWCR & _BV(TWINT))) {
     if (timmy.expired(TWI_TIMEOUT_MS)) {