104 / 160
Copyright © 2016-2018 TOSHIBA TELI CORPORATION, All Rights Reserved.
http://www.toshiba-teli.co.jp/en/index.htm
D4259344C
Register access API
Control AntiGlitch/AntiChattering by accessing IIDC2 registers directly.
API name
Description
Cam_ReadReg
Read register value
Cam_WriteReg
Write register value
AntiGlitch/AntiChattering
1. Write to ‘Value’ field of ‘AntiGlitch’ register.
2. Write to ‘Value’ field of ‘AntiChattering’ register.
// AntiGlitch = 1.0[us] (Raw value = 100)
// AntiChattering = 10.0[us] (Raw value = 1250)
uint32_t uiAntiGlitchRaw = 100;
uint32_t uiAntiChatteringRaw = 1250;
// Set Value
Cam_WriteReg(s_hCam,
0x21F3DC
, 1, &uiAntiGlitchRaw);
Cam_WriteReg(s_hCam,
0x21F3FC
, 1, &uiAntiChatteringRaw);
Please refer to [Camera functions] in [TeliCamAPI Library manual] for more detail.
Minimum / Maximum Value
AntiGlitch
AntiChattering
Minimum
Raw Value
1
49
Absolute Value
0.05 [us]
1.96 [us]
Maximum
Raw Value
40000
49999
Absolute Value
2000.00 [us]
1999.96 [us]
Initial Value
Raw Value
1
49
Absolute Value
0.05 [us]
1.96 [us]
Formula
Absolute Value [us] = Raw Value / 20
Absolute Value [us] = Raw Value / 25