/******************************************************************************************************** * @fn ZMacSrcMatchEnable * * @brief This function is call to enable AUTOPEND and source address matching. * * @param addressType - address type that the application uses * SADDR_MODE_SHORT or SADDR_MODE_EXT. * numEntries - number of source address table entries to be used * * @return status ********************************************************************************************************/ ZMacStatus_t ZMacSrcMatchEnable (uint8 addrType, uint8 numEntries) { return (MAC_SrcMatchEnable(addrType, numEntries)); }
/******************************************************************************************************** * @fn ZMacSrcMatchEnable * * @brief This function is call to enable AUTOPEND and source address matching. * * @param addressType - address type that the application uses * SADDR_MODE_SHORT or SADDR_MODE_EXT. * numEntries - number of source address table entries to be used * * @return status ********************************************************************************************************/ ZMacStatus_t ZMacSrcMatchEnable (void) { MAC_SrcMatchEnable(); return ZMacSuccess; }