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.

NDK使用



我想问一个问题,TI 公司 NDK文档里如下介绍NDK的使用的:

  通过调用NC_NetStart()

  这个函数开启TCP/IP协议栈,但此函数调用后,并不会返回,必须在用户代码里调用

  NC_NetStop()函数后,才会返回,但执行NC_NetStop()函数后,协议栈又关闭了,

  网口也就不能正常收发数据了,这样如果要网口正常,程序就一直在NC_NetStart()

  函数里运行,但别的程序代码就没有办法执行了,要执行别的程序代码,就必须

  执行NC_NetStop()关闭网口。请问,应该怎样处理或设置,才能使网口程序和别的程     序代码互不影响,都可以正常执行?