Explorar el Código

Merge pull request #402 from XPila/MK3

fixed bug - fsensor synchronization (b146)
XPila hace 6 años
padre
commit
f1d30d99fe
Se han modificado 1 ficheros con 3 adiciones y 2 borrados
  1. 3 2
      Firmware/fsensor.cpp

+ 3 - 2
Firmware/fsensor.cpp

@@ -153,11 +153,12 @@ bool fsensor_check_autoload(void)
 
 ISR(PCINT2_vect)
 {
+//	puts("PCINT2\n");
 	if (!((fsensor_int_pin_old ^ PINK) & FSENSOR_INT_PIN_MSK)) return;
+	fsensor_int_pin_old = PINK;
 	static bool _lock = false;
 	if (_lock) return;
 	_lock = true;
-//	puts("PCINT2\n");
 //	return;
 	int st_cnt = fsensor_st_cnt;
 	fsensor_st_cnt = 0;
@@ -219,7 +220,7 @@ ISR(PCINT2_vect)
 		}
 	}
 	pat9125_y = 0;
-	_lock = true;
+	_lock = false;
 	return;
 }