德州仪器AMC1204的应用指南
elsif MCLK‘event and MCLK = ’1‘ then
Z1 《= Z1 + MOUT;
Z2 《= Z2 + Z1;
Z3 《= Z3 + Z2;
end if;
end process;
process(CNR, RESN)
begin
if RESN = ’0‘ then
Z4 《= (others =》 ’0‘);
Z5 《= (others =》 ’0‘);
Z6 《= (others =》 ’0‘);
Z7 《= (others =》 ’0‘);
elsif CNR’event and CNR = ‘1’ then
Z4 《= Z3;
Z5 《= Z3 - Z4;
Z6 《= Z3 - Z4 - Z5;
Z7 《= Z3 - Z4 - Z5 - Z6;
end if;
end process;
CN5 《= Z7;
end RTL;
3 结论
应用高性能隔离Delta-Sigma调制器AMC1204时,为了确保转换精度,需要注意外围输入电路的设计,选择合适的输入采样电阻以及时钟频率,使得输入采样电阻阻值相对于输入等效阻抗尽量小,以此降低输入电阻引起的转换误差;同时选择合适的输出滤波器,以满足整个系统对测量精度的要求。
4 Reference
[1] AMC1204 datasheet
[2] AMC1210 datasheet
评论