MCPcopy Create free account
hub / github.com/cmauri/eviacam / SetThreadPeriod

Method SetThreadPeriod

src/visionpipeline.cpp:474–494  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

472}
473
474void CVisionPipeline::SetThreadPeriod (int value)
475{
476 switch (value)
477 {
478 case LOWEST:
479 m_threadPeriod= LOWEST;
480 break;
481 case LOW:
482 m_threadPeriod= LOWEST;
483 break;
484 case HIGH:
485 m_threadPeriod= HIGH;
486 break;
487 case HIGHEST:
488 m_threadPeriod= HIGHEST;
489 break;
490 default:
491 m_threadPeriod= NORMAL;
492 break;
493 }
494}
495
496//
497// Configuration methods

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected