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.
Hi, 您好!
每个核都可以平等使用网络加速器, 所以您是可以在核1上运行的
在Hello World中, 改到核1运行需要修改一些代码, 不知道您的修改是怎么样的
1. /* Initialize QMSS */
if (platform_get_coreid() == 0)
{
qmss_cfg.master_core = 0;
}
else
{
qmss_cfg.master_core = 1;
}
2.
/* Initialize CPPI */
if (platform_get_coreid() == 0)
{
cppi_cfg.master_core = 0;
}
else
{
cppi_cfg.master_core = 1;
}
3. 在cmd文件里, L2SRAM (RWX) : org = 0x800000, len = 0x100000 请修改成全局地址org = 0x11800000, 并在编译出来的.map文件中,确认这个修改已经生效
如果还是不能ping通, 您可以通过以太网统计寄存器来查看是哪个位置丢包了:
参考: KeyStone Gigabit Ethernet (GbE) Switch Subsystem (SPRUGV9C)
谢谢!