minor changes

This commit is contained in:
joran2738
2023-11-19 23:29:54 +01:00
parent 47b1cd167b
commit 48acc38493
2 changed files with 23 additions and 40 deletions

View File

@@ -56,11 +56,11 @@ typedef struct {
* @brief set_owner_details() is the interface that can be used in other files
* to set the owner's details
*
* @param name string containing the new owner's name
* @param surname string containing the new owner's surname
* @param[in] name string containing the new owner's name
* @param[in] surname string containing the new owner's surname
* @return setting owner details error
* - 1: no error occured, details were set
* - 0: an error occured, all or some details weren't set or owner pointer is NULL
* - 0: an error occured, all or some details weren't set
*/
uint8_t udp_broadcast_set_owner_details(const char* , const char*);
@@ -95,8 +95,8 @@ char* udp_broadcast_get_owner_details_reply();
* @fn err_t udp_broadcast_init()
* @brief udp_broadcast_init() initializes the owner's variables and calls upon @see udp_broadcast_connection_init()
*
* @param x_pos : uint16_t that sets the x coordinate the owner's name will be written on the LCD
* @param y_pos : uint16_t that sets the y coordinate the owner's name will be written on the LCD
* @param[in] x_pos : uint16_t that sets the x coordinate the owner's name will be written on the LCD
* @param[in] y_pos : uint16_t that sets the y coordinate the owner's name will be written on the LCD
* @return lwIP error code.
* - ERR_OK. Successful. No error occurred.
* - ERR_USE. The specified ipaddr and port are already bound to by another UDP PCB.