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.

求个函数的源文件,多谢了!!!



send Callback function registered by driver to send packets.
Syntax #include <stkmain.h>


int (*send) (NETIF_DEVICE* ptr_netif_device, PBM_Handle hPkt);


Return Value The function returns a value of 0 on success and a negative value on error. On success,
the packet memory cleanup needs to be handled by the driver; but if an error is returned,
the NDK core stack will cleanup the packet.
Description The device send function is an API which is used by the core NDK stack to pass packets
to the driver for transmission. Driver authors must specify this callback function or else
the NIMU registration will fail.

这是·SPRU524H中的一个函数,请问send函数的源文件在哪?