Browse Source

Merge pull request #1351 from PavelSindler/MK3_for_merging

 mmu: FINDA disabled by damaged/disconnected PAT9125 hotfix
XPila 5 years ago
parent
commit
3d76081c79
1 changed files with 1 additions and 0 deletions
  1. 1 0
      Firmware/fsensor.cpp

+ 1 - 0
Firmware/fsensor.cpp

@@ -362,6 +362,7 @@ bool fsensor_oq_result(void)
 
 ISR(FSENSOR_INT_PIN_VECT)
 {
+	if (mmu_enabled) return;
 	if (!((fsensor_int_pin_old ^ FSENSOR_INT_PIN_PIN_REG) & FSENSOR_INT_PIN_MASK)) return;
 	fsensor_int_pin_old = FSENSOR_INT_PIN_PIN_REG;
 	static bool _lock = false;