TI中文支持网
TI专业的中文技术问题搜集分享网站

TDA2SX: 求助:实现网关(gateway)配置支持

Part Number:TDA2SX

需要在TDA2x中,实现GateWay IP配置,查看了资料,在如下代码修改:

/*
* Add the default gateway. Since it is the default, the
* destination address and mask are both zero (we go ahead
* and show the assignment for clarity).
*/
bzero(&RT, sizeof(RT));
RT.IPDestAddr = 0;
RT.IPDestMask = 0;
RT.IPGateAddr = inet_addr(GatewayIP);

CfgAddEntry(hCfg, CFGTAG_ROUTE, 0, 0,
sizeof(CI_ROUTE), (UINT8 *)&RT, 0)

上述修改GateWayIP的值是可以正确的修改GateWay IP吗?还需要修改其他的地方吗?

Cherry Zhou:

您好我们已收到您的问题并升级到英文论坛寻求帮助,链接如下,如有答复将尽快回复您。谢谢!

e2e.ti.com/…/tda2sx-how-to-implement-gateway-configuration-support

,

Cherry Zhou:

您好,能否提供更多相关信息?比如,您使用的 SDK 或正在修改的组件的信息。

,

123321:

您好,我在TDA2上使用的,NetWorking中的NDK版本是:ndk_2_24_02_31;NSP版本是nsp_gmacsw_4_16_01_01,在ndk_nsp_hook.c中的stackInitHookDynEth1() 函数进行修改的GateWay IP。

主要的问题是:在TDA2中如何实现GateWay IP的配置?

非常感谢。

,

Cherry Zhou:

好的我们跟进给工程师看下。

赞(0)
未经允许不得转载:TI中文支持网 » TDA2SX: 求助:实现网关(gateway)配置支持
分享到: 更多 (0)