To change baud rate of SP/GO camera link cameras, you have to execute the following sequence within 250 msec.
Send to camera: CBDRT=16(0x10) <CR><LF>
Camera response: COMPLETE<CR><LF>
Change baud rate to 115200 bps
Rewrite new baud rate again with new baud rate (Confirmation command)
Send to camera: CBDRT=16(0x10) <CR><LF>
Camera response: COMPLETE<CR><LF>
Sometimes we receive claims it cannot be executed manually.
Then, here is a macro file to change baud rate with using Teraterm software.
;---- start ----
; Change Buadrate
sendln 'cbdrt=16'
wait 'COMPLETE'
setbaud 115200
sendln 'cbdrt=16'
wait 'COMPLETE'
end
;---- end ----
Teraterm is free software which you can download from web site.
EOF
0 Comments