Hi, actually I'm not familiar to TI boards and I'm neither a software engineer, However I have to control this board a little.
I used to change the video&audio configurations with web-based method, such as php.. but now I want to change it with just a simple line of linux command.
the original codes when I can see after applying changes on web is like below (just a part of it)
------------------------------------------------------------------------------------------------------------------------------------------------------
Change in Config Data: Restart AVSERVER!!
killall: Appro_avi_save: no process killed
ApproDrvExit: 7
AVSERVER UI: Stoping.....
isp_get_awb_rgain
isp_get_awb_bgain
Msg_ThrFxn closing...
Kill queue id:131076
AVSERVER UI: Exiting.....
AVSERVER UI: Closed Successfully
CPU CurrentStatus is = 1
*****************************************************************
IPNC BUILD VERSION: C02_S0103_3.1.4-1
*****************************************************************
./av_server.out DM368 NTSC APPRO2A AEWB 1080P H264 8000000 VBR AUTO MENUOFF P1 2 HQ 1 &
ApproDrvInit: 7
Creat queue id:229380
queue id:229380
AVSERVER UI: Initializing.
CLK Hz,
ARM Hz = 432000000
DDR Hz = 340000000
VPSS Hz = 340000000
IMCOP Hz = 340000000
------------------------------------------------------------------------------------------------------------------------------------------------------
I just would like to get this same code using teraterm and linux commands, just like this
# cd /opt/ipnc
# killall appro_avi_save
killall: appro_avi_save: no process killed
# ./av_server.out DM368 NTSC APPRO2A AEWB 1080P H264 8000000 VBR AUTO MENUOFF P1 2 HQ 1 &
#
AVSERVER UI: Initializing.
CLK Hz,
ARM Hz = 432000000
DDR Hz = 340000000
VPSS Hz = 340000000
IMCOP Hz = 340000000
>>> DRV_imgsOpen - model file open error !!
>>> default sensor: 1
DRV LDC: GetConfig 0003 0x0
[OSA_FILE ] Reading file [/mnt/nand/IMG_Paramset.bin] ... ERROR
IMAGE TUNE: Paramset File is not available..... Setting DEFAULT parameter
ERROR (imageTuneCommunication.c|IMAGE_TUNE_ServerOpen|119): IMAGE TUNE 2
ERROR (drv_imageTune.c|DRV_imageTuneInit|86): IMAGE_TUNE_ServerOpen()
ERROR (drv.c|DRV_init|77): IMAGE TUNE init
ERROR (drv.c|DRV_init|111): DRV_init()
ERROR (avServerApi.c|AVSERVER_init|574): DRV_init()
ERROR (avServerUi.c|UI_start|58): AVSERVER_init()
and it stopped. I just found that differences may occur from the beginning or the code, such as
ApproDrvExit: 7
AVSERVER UI: Stoping.....
isp_get_awb_rgain
isp_get_awb_bgain
Msg_ThrFxn closing...
Kill queue id:131076
AVSERVER UI: Exiting.....
AVSERVER UI: Closed Successfully
CPU CurrentStatus is = 1
and I searched for setting these command but found nothing, so I'm writing on this forum
can someone terminate my stupid process? :(