diff options
author | jonas <schmid@stettbacher.ch> | 2020-10-06 08:59:07 +0200 |
---|---|---|
committer | jonas <schmid@stettbacher.ch> | 2020-10-06 08:59:07 +0200 |
commit | dcfbdf238fd4bb954d89c60ffc97f9460e9204a4 (patch) | |
tree | 48c9cf0d8f75e6bcecbf994f61691083a0d78d16 | |
parent | "Dogxygen style" function commenting. (diff) | |
download | o3000-driver-dcfbdf238fd4bb954d89c60ffc97f9460e9204a4.tar.gz o3000-driver-dcfbdf238fd4bb954d89c60ffc97f9460e9204a4.zip |
Refine comments regarding the relation of o3000_connect(), o3000_disconnect() and o3000_exit().
-rw-r--r-- | o3000.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -916,7 +916,7 @@ int __stdcall o3000_disconnect(int id) { * by @ref o3000_get_num_device. * * NOTE - * This function will block until the USB device is disconnected manually or the driver is stopped by calling @ref o3000_exit. + * This function will block until the USB device is disconnected manually or the driver is stopped by calling @ref o3000_disconnect or @ref o3000_exit. * * @param id session ID * @param device_nr device number to connect (use 0 to connect to first available device) @@ -1398,7 +1398,7 @@ _o3000_init_abort: /** * Exit O-3000 session. - * This function closes an active session and releases all system resources. + * This function disconnects and closes an active session. Afterwards it releases all system resources. * * @param id session ID */ |