Added some documentation.

FossilOrigin-Name: 8f4b24280066e9062ceb74ec675fea46f64618e9568f1a453dade046c65e030d
This commit is contained in:
7u83@mail.ru 2016-03-04 18:37:02 +00:00
parent 72027c4ec1
commit 031ebb0315
1 changed files with 26 additions and 0 deletions

View File

@ -7,6 +7,11 @@
#include "lw.h"
/**
* @defgroup CW CW
* @{
*/
extern int cw_read_wtp_descriptor(mbag_t mbag, struct conn *conn,
struct cw_action_in *a, uint8_t * data, int len);
@ -16,5 +21,26 @@ extern int cw_read_wtp_descriptor_7(mbag_t mbag, struct conn *conn,
extern int cw_read_wtp_descriptor_versions(mbag_t mbag, uint8_t * data,
int len);
/* Use some macros from LWAPP */
/**
* Put a byte to an output buffer.
* see #lw_put_byte
*/
#define cw_put_byte lw_put_byte
/**
* Put a word to an output buffee.
* see #lw_put_word
*/
#define cw_put_word lw_put_word
#define cw_put_dword lw_put_dword
#define cw_put_data lw_put_data
#define cw_put_bstr lw_put_bstr
#define cw_put_bstr16 lw_put_bstr16
/**
*@}
*/
#endif