Category: Software
Product Number: AD9988
Software Version: JESD lane mapping
请教关于下面三行AD9988配置的问题:
1. jtx mapping关系中pe和ce分别代表什么意思?区别和使用规则是什么?
2. jrx的link0,{0,4,1,7,6,5,3,2} 分别代表逻辑通道0对应物理通道0,逻辑通道1对应物理通道4......逻辑通道7对应物理通道2,对吧?
这个映射关系不采用一一对应,比如逻辑0对应物理0,逻辑1对应物理1......直到逻辑7对应物理7,是考虑到原理图里物理通道没一一对应上吗?还是有别的考虑?
// uint8_t jtx_logiclane_mapping_pe_brd[2][8] = { { 2, 0, 7, 6, 5, 4, 3, 1 }, { 5, 4, 3, 1, 2, 0, 7, 6 } }; /* uc */
uint8_t jtx_logiclane_mapping_ce_brd[2][8] = { { 0, 1, 2, 3, 4, 5, 6, 7 }, { 4, 5, 6, 7, 0, 1, 2, 3 } }; /* uc */
uint8_t jrx_logiclane_mapping[2][8] = { { 0, 4, 1, 7, 6, 5, 3, 2 }, { 0, 4, 1, 7, 6, 5, 3, 2 } };/* uc */
多谢!
XM