| 1475 | } |
| 1476 | |
| 1477 | bool matchSpaceWithGreaterRange(uint16_t aMeasuredTicks, uint16_t aMatchValueMicros) { |
| 1478 | #if (MARK_EXCESS_MICROS == 0) |
| 1479 | return matchTicksWithGreaterRange(aMeasuredTicks, aMatchValueMicros); |
| 1480 | #else |
| 1481 | return matchTicksWithGreaterRange(aMeasuredTicks, aMatchValueMicros, MARK_EXCESS_MICROS); // New handling of MARK_EXCESS_MICROS without strange rounding errors |
| 1482 | #endif |
| 1483 | } |
| 1484 | |
| 1485 | bool MATCH_SPACE(uint16_t measured_ticks, uint16_t desired_us) { |
| 1486 | return matchSpace(measured_ticks, desired_us); |
nothing calls this directly
no test coverage detected