This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Controlling ISS sensor driver from system_server on A8

Other Parts Discussed in Thread: DM385

I am trying to change the sensor registers from the boa http interface.

I have already added an appropriate function in sys_server to handle the http command.

From looking at the code, it seems like I'm supposed to trigger a call to FVID2_control() from my function located in sys_server which runs on A8.

I have noticed that the file mcfw_api_demos/itt_Capture.c already contains a message handler with message definitions, among which i found CMD_SENSOR_REG_WRITE. those commands are then used to send messages to M3 VPSS. 

However, the ITT server sends those commands after receiving a request through TCP/IP.

Is there any other existing handler that sends messages to ISS through which I can send a command to read/write sensor register, or should I implement one myself?

In case the latter is true, what would be the best way to implement this?