Sorry about the missing header; adding it in here.

Some comment tweaks for Doxygen.
This commit is contained in:
tbrennan3
2010-04-17 15:39:20 +00:00
parent fac19dff98
commit 8dd671d5a1
5 changed files with 123 additions and 11 deletions
+25 -1
View File
@@ -23,7 +23,9 @@
*
*********************************************************************/
/* command line tool that sends a BACnet service, and displays the reply */
/** @file epics/main.c Command line tool to build a list of Objects and
* Properties that can be used with VTS3 EPICS files. */
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
@@ -54,6 +56,12 @@
#include "keylist.h"
#include "bacepics.h"
/* (Doxygen note: The next two lines pull all the following Javadoc
* into the BACEPICS module.) */
/** @addtogroup BACEPICS
* @{ */
/* buffer used for receive */
static uint8_t Rx_Buf[MAX_MPDU] = { 0 };
@@ -724,6 +732,19 @@ int CheckCommandLineArgs(
return 0; /* All OK if we reach here */
}
/** Main function of the bacepics program.
*
* @see Device_Set_Object_Instance_Number, Keylist_Create, address_init,
* dlenv_init, address_bind_request, Send_WhoIs,
* tsm_timer_milliseconds, datalink_receive, npdu_handler,
* Send_Read_Property_Multiple_Request,
*
*
* @param argc [in] Arg count.
* @param argv [in] Takes one or two arguments: an optional -v "Show Values"
* switch, and the Device Instance #.
* @return 0 on success.
*/
int main(
int argc,
char *argv[])
@@ -1027,3 +1048,6 @@ int main(
return 0;
}
/*@}*/ /* End group BACEPICS */