Document apps in doxygen module style, create more top-level categories to structure documentation

This commit is contained in:
Dirk Ziegelmeier
2016-07-26 19:30:05 +02:00
parent 8a9de94b1f
commit c6831648e2
15 changed files with 128 additions and 36 deletions

View File

@@ -34,13 +34,10 @@
#include "lwip/apps/netbiosns_opts.h"
/** Init netbios responder */
void netbiosns_init(void);
#ifndef NETBIOS_LWIP_NAME
/** Set netbios name. ATTENTION: the hostname must be <= 15 characters! */
void netbiosns_set_name(const char* hostname);
#endif
/** Stop netbios responder */
void netbiosns_stop(void);
#endif /* LWIP_HDR_APPS_NETBIOS_H */

View File

@@ -69,7 +69,10 @@ struct snmp_varbind
void *value;
};
/** Agent setup, start listening to port 161. */
/**
* @ingroup snmp_core
* Agent setup, start listening to port 161.
*/
void snmp_init(void);
void snmp_set_mibs(const struct snmp_mib **mibs, u8_t num_mibs);