Updated: October 28, 2024 |
The default application that the reference image starts is the Camera MUX example application. You can change the configuration to start a different example application or a custom one that you built.
To do so, you can use the existing SLM and sensor configuration files, after you have uploaded your application to the R-Car V3H:
# cp slm-config-platform-single_cam.xml slm-config-platform.xml
... ... <SLM:component name="camera_mux"> <SLM:command>/base/usr/bin/camera_mux</SLM:command> <SLM:args>-n1</SLM:args> <SLM:depend>sensor</SLM:depend> <SLM:stop stop="signal">SIGTERM</SLM:stop> </SLM:component> ... ...to:
... ... <SLM:component name="camera_mux"> <SLM:command>/base/usr/bin/mycustomcamera</SLM:command> <SLM:depend>sensor</SLM:depend> <SLM:stop stop="signal">SIGTERM</SLM:stop> </SLM:component> ... ...