2026-06-13 12:02:04 -04:00
|
|
|
#include <probeRunner.h>
|
|
|
|
|
|
2026-06-13 18:50:31 -04:00
|
|
|
#include <support/probeComponentThread.h>
|
2026-06-13 12:02:04 -04:00
|
|
|
|
2026-06-13 18:50:31 -04:00
|
|
|
namespace lcamera_dev_probe {
|
2026-06-13 12:02:04 -04:00
|
|
|
|
|
|
|
|
void runOnComponentThread(
|
|
|
|
|
const std::function<void(
|
|
|
|
|
const std::shared_ptr<sscl::ComponentThread>&)>& work)
|
|
|
|
|
{
|
2026-06-13 18:50:31 -04:00
|
|
|
sscl::tests::ProbeComponentThreadHarness harness("lcameraDev-probe");
|
|
|
|
|
harness.runSync(work);
|
2026-06-13 12:02:04 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace lcamera_dev_probe
|