Merge pull request #1351 from PavelSindler/MK3_for_merging

mmu: FINDA disabled by damaged/disconnected PAT9125 hotfix
This commit is contained in:
XPila 2018-11-21 20:03:07 +01:00 committed by GitHub
commit 3d76081c79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -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;