Document enumeration functions.
This commit is contained in:
parent
3b63f34dcb
commit
68ab64ccdc
|
@ -68,6 +68,11 @@ fail:
|
|||
return NULL;
|
||||
}
|
||||
|
||||
/**
|
||||
* List the serial ports available on the system.
|
||||
*
|
||||
* @return A null-terminated array of port name strings.
|
||||
*/
|
||||
char **sp_list_ports(void)
|
||||
{
|
||||
char **list = NULL;
|
||||
|
@ -197,6 +202,9 @@ out:
|
|||
#endif
|
||||
}
|
||||
|
||||
/**
|
||||
* Free a port list returned by sp_list_ports.
|
||||
*/
|
||||
void sp_free_port_list(char **list)
|
||||
{
|
||||
unsigned int i;
|
||||
|
|
Loading…
Reference in New Issue