我想在图中使用 Latte 将 DSA 设置为1RX/2RX/3RX/4RX (黄色部分)。
请教我如何设置它。
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.
我想在图中使用 Latte 将 DSA 设置为1RX/2RX/3RX/4RX (黄色部分)。
请教我如何设置它。
您好、 Suematsu。
要动态更改 RX DSA、您可以使用"CAFE.setRxDsa(afeInst、chNo、dsaSetting)"命令、其中:
发票 |
AFE ID |
通道号 |
选择 RX 通道 RXA 为0 1表示 RXB 2表示 RXC 3个用于 RXD |
dsaSetting (动态设置) |
模拟 DSA 索引。 应用的衰减为 dsaSeting*0.5dB |
例如、要在 EVM 的 AFE 中将 RxB DSA 设置为10dB、应使用" CAFE.setRxDsa(0、1、20)"。
此致!
卡米洛
您好、Suematsu。
函数"dsa, CAFE.setRxDsa(afeInst chNo, dsaSetting )"是动态更改 AFE.deviceBringup ()之后的 DSA。
要在启动时更改 DSA 的默认值,应在 AFE.deviceBringup ()函数之前在脚本中添加以下行:
sysParams.defaultFbDsa = [0, 0] #FB1 and FB2 sysParams.defaultRxDsa = [0, 0, 0, 0] #RXA, RXB, RXC, RXD sysParams.defaultTxDsa = [0, 0, 0, 0] #TXA, TXB, TXC, TXD
RX 和 FB 值步长为0.5dB、而 TX 值步长为1dB。
此致!
卡米洛