MCPcopy Create free account
hub / github.com/Arduino-IRremote/Arduino-IRremote / matchSpaceWithGreaterRange

Function matchSpaceWithGreaterRange

src/IRReceive.hpp:1477–1483  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1475}
1476
1477bool 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
1485bool MATCH_SPACE(uint16_t measured_ticks, uint16_t desired_us) {
1486 return matchSpace(measured_ticks, desired_us);

Callers

nothing calls this directly

Calls 1

Tested by

no test coverage detected