From 00041c97323b74684cf5379eebc3c721dfe2fce5 Mon Sep 17 00:00:00 2001 From: "saerome.kim" Date: Tue, 14 Feb 2017 15:30:48 +0900 Subject: [PATCH] Fix doxygen warning - warning : argument not found Change-Id: I8efc8cc03294faef10313b34d0818e23b990cc4f Signed-off-by: saerome.kim --- include/zigbee.h | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/include/zigbee.h b/include/zigbee.h index 39992ac..c9215c4 100644 --- a/include/zigbee.h +++ b/include/zigbee.h @@ -279,6 +279,8 @@ typedef void (*zb_disable_network_cb)(unsigned char status, void *user_data); * function. * * @param[in] handle The handle of zigbee + * @param[in] cb zb_disable_network_cb + * @param[in] user_data user data * * @return 0 on success, otherwise a negative error value. * @retval #ZIGBEE_ERROR_NONE Successful @@ -423,9 +425,11 @@ int zb_get_endpoint_list(zigbee_h handle, ieee_addr addr64, unsigned char *count * * @param[in] handle The handle of zigbee * @param[in] addr64 the Zigbee IEEE MAC address + * @param[in] ep endpoint number * @param[out] in_cluster_count The number of in-clusters - * @param[out] in_cluster_count The number of out-clusters - * @param[out] list The device information list + * @param[out] in_cluster_list The device server clsuter list + * @param[out] out_cluster_count The number of out-clusters + * @param[out] out_cluster_list The device client list * * @return 0 on success, otherwise a negative error value. * @retval #ZIGBEE_ERROR_NONE Successful @@ -470,7 +474,7 @@ int zb_device_list_free(zb_end_device_info_h *list); * * @see zb_devices_info_foreach_end_device() */ -typedef bool (*zb_end_device_cb )(int index, zb_end_device_info_h child, void *user_data); +typedef bool (*zb_end_device_cb)(int index, zb_end_device_info_h child, void *user_data); /** * @brief Calls a function for each children end-point of parent. @@ -589,7 +593,7 @@ int zb_get_ep_list(zb_end_device_info_h handle, unsigned char *ep_list); * @see zb_devices_info_foreach_end_device() * @see zb_get_all_device_list() */ -int zb_get_mac_capabiity(zb_end_device_info_h handle, unsigned char *capability); +int zb_get_mac_capabiity(zb_end_device_info_h handle, unsigned char *capability); /** * @brief get ability of alternative PAN coordinator of a specific end-point -- 2.34.1