diff --git a/core/Messenger.c b/core/Messenger.c index 2787193e..2cc5c7a3 100644 --- a/core/Messenger.c +++ b/core/Messenger.c @@ -93,7 +93,7 @@ void getaddress(Messenger *m, uint8_t *address) /* * add a friend * set the data that will be sent along with friend request - * address is the address of the friend (returned by getaddress) it must be FRIEND_ADDRESS_SIZE bytes. TODO: add checksum. + * address is the address of the friend (returned by getaddress of the friend you wish to add) it must be FRIEND_ADDRESS_SIZE bytes. TODO: add checksum. * data is the data and length is the length * returns the friend number if success * return FA_TOOLONG if message length is too long diff --git a/core/Messenger.h b/core/Messenger.h index 48e14cf7..4e1010f5 100644 --- a/core/Messenger.h +++ b/core/Messenger.h @@ -147,7 +147,7 @@ void getaddress(Messenger *m, uint8_t *address); /* * add a friend * set the data that will be sent along with friend request - * address is the address of the friend (returned by getaddress) it must be FRIEND_ADDRESS_SIZE bytes. TODO: add checksum. + * address is the address of the friend (returned by getaddress of the friend you wish to add) it must be FRIEND_ADDRESS_SIZE bytes. TODO: add checksum. * data is the data and length is the length * returns the friend number if success * return -1 if message length is too long