From 331b17cf1d9ed65b875c73be8d006714748edf59 Mon Sep 17 00:00:00 2001 From: skarg Date: Fri, 18 Jan 2013 03:07:59 +0000 Subject: [PATCH] Added JavaDoc function headers to a couple of functions. --- bacnet-stack/demo/object/device.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/bacnet-stack/demo/object/device.c b/bacnet-stack/demo/object/device.c index 980e837a..77aaf452 100644 --- a/bacnet-stack/demo/object/device.c +++ b/bacnet-stack/demo/object/device.c @@ -1700,6 +1700,12 @@ bool Device_Encode_Value_List( return (status); } +/** Checks the COV flag in the requested Object + * @ingroup ObjHelpers + * @param [in] The object type to be looked up. + * @param [in] The object instance to be looked up. + * @return True if the COV flag is set + */ bool Device_COV( BACNET_OBJECT_TYPE object_type, uint32_t object_instance) @@ -1720,6 +1726,11 @@ bool Device_COV( return (status); } +/** Clears the COV flag in the requested Object + * @ingroup ObjHelpers + * @param [in] The object type to be looked up. + * @param [in] The object instance to be looked up. + */ void Device_COV_Clear( BACNET_OBJECT_TYPE object_type, uint32_t object_instance)