DIVECOMPUTER(3) Library Functions Manual DIVECOMPUTER(3)

divecomputer
communicate with dive computers

library “libdivecomputer”

The divecomputer library is a cross-platform and open source library for communication with dive computers from various manufacturers. Systems interfacing with divecomputer must link with -ldivecomputer.
A system wishing to query dives in a dive computer generally follows these steps:
  1. Create a new context with dc_context_new(3) to initialize the library. Logging can be controlled with dc_context_set_logfunc(3) and dc_context_set_loglevel(3).
  2. Find a descriptor for their dive computer by iterating through dc_descriptor_iterator(3) and searching by name, vendor, or product family.
  3. Find the transport to use for the communication. To determine the supported transports use dc_descriptor_get_transports(3).
  4. Find the hardware device corresponding to the connected dive computer by iterating through dc_usbhid_iterator_new(3), dc_serial_iterator_new(3), dc_irda_iterator_new(3) or dc_bluetooth_iterator_new(3).
  5. Open the transport communcations with dc_usbhid_open(3), dc_serial_open(3), dc_irda_open(3) or dc_bluetooth_open(3).
  6. Open a connection to the dive computer with dc_device_open(3). Optionally use dc_device_set_events(3), dc_device_set_fingerprint(3) and dc_device_set_cancel(3) to set the logging events, last-seen fingerprint, and cancel routine, respectively.
  7. Iterate over all dives with dc_device_foreach(3).
  8. For each iterated dive, create a new parser with dc_parser_new(3) and set the parsed data with dc_parser_set_data(3).
  9. Get attributes of the parsed dive with dc_parser_get_field(3).
  10. Iterate through the dive's samples (recorded data) with dc_parser_samples_foreach(3).

Most libdivecomputer functions return with a dc_status_t type with the following possible values:
 
 
Completion with success: not an error.
 
 
End of an iterator: not an error.
 
 
Feature not implemented or not supported by device. (The difference depends on the context. Since libdivecomputer is largely based on reverse engineering, we often can't even tell them apart.)
 
 
Invalid parameter. Usually indicates caller bug.
 
 
Out of memory.
 
 
Device not found. In this context the device refers to the low-level communication device (serial, bluetooth, irda, etc), not the dive computer. In most cases, and especially with serial communication, we can't detect whether the dive computer is present. This is always detected indirectly: no response is received, and thus a timeout error.
 
 
Access denied (again, to the low-level communication device).
 
 
See DC_STATUS_NODEVICE.
 
 
Any other I/O error.
 
 
Encountered unexpected data in the communication protocol data packets, e.g., while downloading.
 
 
Encountered unexpected data in the interpretation of data contents, e.g., while parsing.
 
 
Returned when the cancel callback requested to cancel the operation. Note that cancellation is only checked at specific (safe) points, so it's certainly possible it may not get noticed immediately and still return DC_STATUS_SUCCESS.

dc_context_new(3), dc_descriptor_iterator(3) dc_device_open(3) dc_parser_new(3)

The library “libdivecomputer” library was written by Jef Driesen, jef@libdivecomputer.org. These manpages were written by
Kristaps Dzonsons, kristaps@bsd.lv.
January 5, 2017 Debian