├── .github └── workflows │ ├── build.yml │ └── release.yml ├── .gitignore ├── .travis.yml ├── COPYING ├── Makefile.am ├── NEWS ├── README ├── configure.ac ├── contrib ├── README ├── android │ └── Android.mk ├── msvc │ ├── libdivecomputer.vcxproj │ └── libdivecomputer.vcxproj.filters └── udev │ └── libdivecomputer.rules ├── doc ├── Makefile.am ├── McLeanExtreme-wire-format.txt ├── doxygen.cfg.in └── man │ ├── Makefile.am │ ├── dc_bluetooth_addr2str.3 │ ├── dc_bluetooth_device_free.3 │ ├── dc_bluetooth_device_get_address.3 │ ├── dc_bluetooth_device_get_name.3 │ ├── dc_bluetooth_iterator_new.3 │ ├── dc_bluetooth_open.3 │ ├── dc_bluetooth_str2addr.3 │ ├── dc_buffer_append.3 │ ├── dc_buffer_free.3 │ ├── dc_buffer_get_data.3 │ ├── dc_buffer_get_size.3 │ ├── dc_buffer_new.3 │ ├── dc_buffer_prepend.3 │ ├── dc_context_free.3 │ ├── dc_context_new.3 │ ├── dc_context_set_logfunc.3 │ ├── dc_context_set_loglevel.3 │ ├── dc_datetime_gmtime.3 │ ├── dc_datetime_localtime.3 │ ├── dc_datetime_mktime.3 │ ├── dc_datetime_now.3 │ ├── dc_descriptor_free.3 │ ├── dc_descriptor_get_model.3 │ ├── dc_descriptor_get_product.3 │ ├── dc_descriptor_get_transports.3 │ ├── dc_descriptor_get_vendor.3 │ ├── dc_descriptor_iterator_new.3 │ ├── dc_device_close.3 │ ├── dc_device_foreach.3 │ ├── dc_device_open.3 │ ├── dc_device_set_cancel.3 │ ├── dc_device_set_events.3 │ ├── dc_device_set_fingerprint.3 │ ├── dc_iostream_close.3 │ ├── dc_irda_device_free.3 │ ├── dc_irda_device_get_address.3 │ ├── dc_irda_device_get_name.3 │ ├── dc_irda_iterator_new.3 │ ├── dc_irda_open.3 │ ├── dc_iterator_free.3 │ ├── dc_iterator_next.3 │ ├── dc_parser_destroy.3 │ ├── dc_parser_get_datetime.3 │ ├── dc_parser_get_field.3 │ ├── dc_parser_new.3 │ ├── dc_parser_samples_foreach.3 │ ├── dc_serial_device_free.3 │ ├── dc_serial_device_get_name.3 │ ├── dc_serial_iterator_new.3 │ ├── dc_serial_open.3 │ ├── dc_usbhid_device_free.3 │ ├── dc_usbhid_device_get_pid.3 │ ├── dc_usbhid_device_get_vid.3 │ ├── dc_usbhid_iterator_new.3 │ ├── dc_usbhid_open.3 │ └── libdivecomputer.3 ├── examples ├── Makefile.am ├── common.c ├── common.h ├── dctool.c ├── dctool.h ├── dctool_download.c ├── dctool_dump.c ├── dctool_fwupdate.c ├── dctool_help.c ├── dctool_list.c ├── dctool_parse.c ├── dctool_read.c ├── dctool_scan.c ├── dctool_timesync.c ├── dctool_version.c ├── dctool_write.c ├── output-private.h ├── output.c ├── output.h ├── output_raw.c ├── output_xml.c ├── utils.c └── utils.h ├── include ├── Makefile.am └── libdivecomputer │ ├── Makefile.am │ ├── atomics_cobalt.h │ ├── ble.h │ ├── bluetooth.h │ ├── buffer.h │ ├── common.h │ ├── context.h │ ├── custom.h │ ├── datetime.h │ ├── descriptor.h │ ├── device.h │ ├── divesystem_idive.h │ ├── hw_frog.h │ ├── hw_ostc.h │ ├── hw_ostc3.h │ ├── ioctl.h │ ├── iostream.h │ ├── irda.h │ ├── iterator.h │ ├── oceanic_atom2.h │ ├── oceanic_veo250.h │ ├── oceanic_vtpro.h │ ├── parser.h │ ├── reefnet_sensus.h │ ├── reefnet_sensuspro.h │ ├── reefnet_sensusultra.h │ ├── serial.h │ ├── suunto_d9.h │ ├── suunto_eon.h │ ├── suunto_vyper2.h │ ├── units.h │ ├── usb.h │ ├── usbhid.h │ └── version.h.in ├── libdivecomputer.pc.in ├── m4 ├── ax_append_compile_flags.m4 ├── ax_append_flag.m4 ├── ax_check_compile_flag.m4 ├── ax_require_defined.m4 └── pkg.m4 └── src ├── Makefile.am ├── aes.c ├── aes.h ├── array.c ├── array.h ├── atomics_cobalt.c ├── atomics_cobalt.h ├── atomics_cobalt_parser.c ├── ble.c ├── bluetooth.c ├── buffer.c ├── checksum.c ├── checksum.h ├── citizen_aqualand.c ├── citizen_aqualand.h ├── citizen_aqualand_parser.c ├── cochran_commander.c ├── cochran_commander.h ├── cochran_commander_parser.c ├── common-private.h ├── common.c ├── context-private.h ├── context.c ├── cressi_edy.c ├── cressi_edy.h ├── cressi_edy_parser.c ├── cressi_goa.c ├── cressi_goa.h ├── cressi_goa_parser.c ├── cressi_leonardo.c ├── cressi_leonardo.h ├── cressi_leonardo_parser.c ├── custom.c ├── datetime.c ├── deepblu_cosmiq.c ├── deepblu_cosmiq.h ├── deepblu_cosmiq_parser.c ├── deepsix_excursion.c ├── deepsix_excursion.h ├── deepsix_excursion_parser.c ├── descriptor.c ├── device-private.h ├── device.c ├── diverite_nitekq.c ├── diverite_nitekq.h ├── diverite_nitekq_parser.c ├── divesoft_freedom.c ├── divesoft_freedom.h ├── divesoft_freedom_parser.c ├── divesystem_idive.c ├── divesystem_idive.h ├── divesystem_idive_parser.c ├── field-cache.c ├── field-cache.h ├── garmin.c ├── garmin.h ├── garmin_parser.c ├── halcyon_symbios.c ├── halcyon_symbios.h ├── halcyon_symbios_parser.c ├── hdlc.c ├── hdlc.h ├── hw_frog.c ├── hw_frog.h ├── hw_ostc.c ├── hw_ostc.h ├── hw_ostc3.c ├── hw_ostc3.h ├── hw_ostc_parser.c ├── ihex.c ├── ihex.h ├── iostream-private.h ├── iostream.c ├── irda.c ├── iterator-private.h ├── iterator.c ├── libdivecomputer.rc ├── libdivecomputer.symbols ├── liquivision_lynx.c ├── liquivision_lynx.h ├── liquivision_lynx_parser.c ├── mares_common.c ├── mares_common.h ├── mares_darwin.c ├── mares_darwin.h ├── mares_darwin_parser.c ├── mares_iconhd.c ├── mares_iconhd.h ├── mares_iconhd_parser.c ├── mares_nemo.c ├── mares_nemo.h ├── mares_nemo_parser.c ├── mares_puck.c ├── mares_puck.h ├── mclean_extreme.c ├── mclean_extreme.h ├── mclean_extreme_parser.c ├── oceanic_atom2.c ├── oceanic_atom2.h ├── oceanic_atom2_parser.c ├── oceanic_common.c ├── oceanic_common.h ├── oceanic_veo250.c ├── oceanic_veo250.h ├── oceanic_veo250_parser.c ├── oceanic_vtpro.c ├── oceanic_vtpro.h ├── oceanic_vtpro_parser.c ├── oceans_s1.c ├── oceans_s1.h ├── oceans_s1_common.c ├── oceans_s1_common.h ├── oceans_s1_parser.c ├── packet.c ├── packet.h ├── parser-private.h ├── parser.c ├── pelagic_i330r.c ├── pelagic_i330r.h ├── platform.c ├── platform.h ├── rbstream.c ├── rbstream.h ├── reefnet_sensus.c ├── reefnet_sensus.h ├── reefnet_sensus_parser.c ├── reefnet_sensuspro.c ├── reefnet_sensuspro.h ├── reefnet_sensuspro_parser.c ├── reefnet_sensusultra.c ├── reefnet_sensusultra.h ├── reefnet_sensusultra_parser.c ├── ringbuffer.c ├── ringbuffer.h ├── seac_screen.c ├── seac_screen.h ├── seac_screen_common.c ├── seac_screen_common.h ├── seac_screen_parser.c ├── serial_posix.c ├── serial_win32.c ├── shearwater_common.c ├── shearwater_common.h ├── shearwater_petrel.c ├── shearwater_petrel.h ├── shearwater_predator.c ├── shearwater_predator.h ├── shearwater_predator_parser.c ├── socket.c ├── socket.h ├── sporasub_sp2.c ├── sporasub_sp2.h ├── sporasub_sp2_parser.c ├── suunto_common.c ├── suunto_common.h ├── suunto_common2.c ├── suunto_common2.h ├── suunto_d9.c ├── suunto_d9.h ├── suunto_d9_parser.c ├── suunto_eon.c ├── suunto_eon.h ├── suunto_eon_parser.c ├── suunto_eonsteel.c ├── suunto_eonsteel.h ├── suunto_eonsteel_parser.c ├── suunto_solution.c ├── suunto_solution.h ├── suunto_solution_parser.c ├── suunto_vyper.c ├── suunto_vyper.h ├── suunto_vyper2.c ├── suunto_vyper2.h ├── suunto_vyper_parser.c ├── tecdiving_divecomputereu.c ├── tecdiving_divecomputereu.h ├── tecdiving_divecomputereu_parser.c ├── timer.c ├── timer.h ├── usb.c ├── usb_storage.c ├── usbhid.c ├── uwatec_aladin.c ├── uwatec_aladin.h ├── uwatec_memomouse.c ├── uwatec_memomouse.h ├── uwatec_memomouse_parser.c ├── uwatec_smart.c ├── uwatec_smart.h ├── uwatec_smart_parser.c ├── version.c ├── zeagle_n2ition3.c └── zeagle_n2ition3.h /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/.travis.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/COPYING -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/Makefile.am -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/README -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/configure.ac -------------------------------------------------------------------------------- /contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/contrib/README -------------------------------------------------------------------------------- /contrib/android/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/contrib/android/Android.mk -------------------------------------------------------------------------------- /contrib/msvc/libdivecomputer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/contrib/msvc/libdivecomputer.vcxproj -------------------------------------------------------------------------------- /contrib/msvc/libdivecomputer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/contrib/msvc/libdivecomputer.vcxproj.filters -------------------------------------------------------------------------------- /contrib/udev/libdivecomputer.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/contrib/udev/libdivecomputer.rules -------------------------------------------------------------------------------- /doc/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/Makefile.am -------------------------------------------------------------------------------- /doc/McLeanExtreme-wire-format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/McLeanExtreme-wire-format.txt -------------------------------------------------------------------------------- /doc/doxygen.cfg.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/doxygen.cfg.in -------------------------------------------------------------------------------- /doc/man/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/Makefile.am -------------------------------------------------------------------------------- /doc/man/dc_bluetooth_addr2str.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_bluetooth_addr2str.3 -------------------------------------------------------------------------------- /doc/man/dc_bluetooth_device_free.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_bluetooth_device_free.3 -------------------------------------------------------------------------------- /doc/man/dc_bluetooth_device_get_address.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_bluetooth_device_get_address.3 -------------------------------------------------------------------------------- /doc/man/dc_bluetooth_device_get_name.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_bluetooth_device_get_name.3 -------------------------------------------------------------------------------- /doc/man/dc_bluetooth_iterator_new.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_bluetooth_iterator_new.3 -------------------------------------------------------------------------------- /doc/man/dc_bluetooth_open.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_bluetooth_open.3 -------------------------------------------------------------------------------- /doc/man/dc_bluetooth_str2addr.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_bluetooth_str2addr.3 -------------------------------------------------------------------------------- /doc/man/dc_buffer_append.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_buffer_append.3 -------------------------------------------------------------------------------- /doc/man/dc_buffer_free.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_buffer_free.3 -------------------------------------------------------------------------------- /doc/man/dc_buffer_get_data.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_buffer_get_data.3 -------------------------------------------------------------------------------- /doc/man/dc_buffer_get_size.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_buffer_get_size.3 -------------------------------------------------------------------------------- /doc/man/dc_buffer_new.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_buffer_new.3 -------------------------------------------------------------------------------- /doc/man/dc_buffer_prepend.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_buffer_prepend.3 -------------------------------------------------------------------------------- /doc/man/dc_context_free.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_context_free.3 -------------------------------------------------------------------------------- /doc/man/dc_context_new.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_context_new.3 -------------------------------------------------------------------------------- /doc/man/dc_context_set_logfunc.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_context_set_logfunc.3 -------------------------------------------------------------------------------- /doc/man/dc_context_set_loglevel.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_context_set_loglevel.3 -------------------------------------------------------------------------------- /doc/man/dc_datetime_gmtime.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_datetime_gmtime.3 -------------------------------------------------------------------------------- /doc/man/dc_datetime_localtime.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_datetime_localtime.3 -------------------------------------------------------------------------------- /doc/man/dc_datetime_mktime.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_datetime_mktime.3 -------------------------------------------------------------------------------- /doc/man/dc_datetime_now.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_datetime_now.3 -------------------------------------------------------------------------------- /doc/man/dc_descriptor_free.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_descriptor_free.3 -------------------------------------------------------------------------------- /doc/man/dc_descriptor_get_model.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_descriptor_get_model.3 -------------------------------------------------------------------------------- /doc/man/dc_descriptor_get_product.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_descriptor_get_product.3 -------------------------------------------------------------------------------- /doc/man/dc_descriptor_get_transports.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_descriptor_get_transports.3 -------------------------------------------------------------------------------- /doc/man/dc_descriptor_get_vendor.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_descriptor_get_vendor.3 -------------------------------------------------------------------------------- /doc/man/dc_descriptor_iterator_new.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_descriptor_iterator_new.3 -------------------------------------------------------------------------------- /doc/man/dc_device_close.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_device_close.3 -------------------------------------------------------------------------------- /doc/man/dc_device_foreach.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_device_foreach.3 -------------------------------------------------------------------------------- /doc/man/dc_device_open.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_device_open.3 -------------------------------------------------------------------------------- /doc/man/dc_device_set_cancel.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_device_set_cancel.3 -------------------------------------------------------------------------------- /doc/man/dc_device_set_events.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_device_set_events.3 -------------------------------------------------------------------------------- /doc/man/dc_device_set_fingerprint.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_device_set_fingerprint.3 -------------------------------------------------------------------------------- /doc/man/dc_iostream_close.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_iostream_close.3 -------------------------------------------------------------------------------- /doc/man/dc_irda_device_free.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_irda_device_free.3 -------------------------------------------------------------------------------- /doc/man/dc_irda_device_get_address.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_irda_device_get_address.3 -------------------------------------------------------------------------------- /doc/man/dc_irda_device_get_name.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_irda_device_get_name.3 -------------------------------------------------------------------------------- /doc/man/dc_irda_iterator_new.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_irda_iterator_new.3 -------------------------------------------------------------------------------- /doc/man/dc_irda_open.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_irda_open.3 -------------------------------------------------------------------------------- /doc/man/dc_iterator_free.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_iterator_free.3 -------------------------------------------------------------------------------- /doc/man/dc_iterator_next.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_iterator_next.3 -------------------------------------------------------------------------------- /doc/man/dc_parser_destroy.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_parser_destroy.3 -------------------------------------------------------------------------------- /doc/man/dc_parser_get_datetime.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_parser_get_datetime.3 -------------------------------------------------------------------------------- /doc/man/dc_parser_get_field.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_parser_get_field.3 -------------------------------------------------------------------------------- /doc/man/dc_parser_new.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_parser_new.3 -------------------------------------------------------------------------------- /doc/man/dc_parser_samples_foreach.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_parser_samples_foreach.3 -------------------------------------------------------------------------------- /doc/man/dc_serial_device_free.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_serial_device_free.3 -------------------------------------------------------------------------------- /doc/man/dc_serial_device_get_name.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_serial_device_get_name.3 -------------------------------------------------------------------------------- /doc/man/dc_serial_iterator_new.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_serial_iterator_new.3 -------------------------------------------------------------------------------- /doc/man/dc_serial_open.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_serial_open.3 -------------------------------------------------------------------------------- /doc/man/dc_usbhid_device_free.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_usbhid_device_free.3 -------------------------------------------------------------------------------- /doc/man/dc_usbhid_device_get_pid.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_usbhid_device_get_pid.3 -------------------------------------------------------------------------------- /doc/man/dc_usbhid_device_get_vid.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_usbhid_device_get_vid.3 -------------------------------------------------------------------------------- /doc/man/dc_usbhid_iterator_new.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_usbhid_iterator_new.3 -------------------------------------------------------------------------------- /doc/man/dc_usbhid_open.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/dc_usbhid_open.3 -------------------------------------------------------------------------------- /doc/man/libdivecomputer.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/doc/man/libdivecomputer.3 -------------------------------------------------------------------------------- /examples/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/Makefile.am -------------------------------------------------------------------------------- /examples/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/common.c -------------------------------------------------------------------------------- /examples/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/common.h -------------------------------------------------------------------------------- /examples/dctool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/dctool.c -------------------------------------------------------------------------------- /examples/dctool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/dctool.h -------------------------------------------------------------------------------- /examples/dctool_download.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/dctool_download.c -------------------------------------------------------------------------------- /examples/dctool_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/dctool_dump.c -------------------------------------------------------------------------------- /examples/dctool_fwupdate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/dctool_fwupdate.c -------------------------------------------------------------------------------- /examples/dctool_help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/dctool_help.c -------------------------------------------------------------------------------- /examples/dctool_list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/dctool_list.c -------------------------------------------------------------------------------- /examples/dctool_parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/dctool_parse.c -------------------------------------------------------------------------------- /examples/dctool_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/dctool_read.c -------------------------------------------------------------------------------- /examples/dctool_scan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/dctool_scan.c -------------------------------------------------------------------------------- /examples/dctool_timesync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/dctool_timesync.c -------------------------------------------------------------------------------- /examples/dctool_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/dctool_version.c -------------------------------------------------------------------------------- /examples/dctool_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/dctool_write.c -------------------------------------------------------------------------------- /examples/output-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/output-private.h -------------------------------------------------------------------------------- /examples/output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/output.c -------------------------------------------------------------------------------- /examples/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/output.h -------------------------------------------------------------------------------- /examples/output_raw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/output_raw.c -------------------------------------------------------------------------------- /examples/output_xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/output_xml.c -------------------------------------------------------------------------------- /examples/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/utils.c -------------------------------------------------------------------------------- /examples/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/examples/utils.h -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = libdivecomputer 2 | -------------------------------------------------------------------------------- /include/libdivecomputer/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/Makefile.am -------------------------------------------------------------------------------- /include/libdivecomputer/atomics_cobalt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/atomics_cobalt.h -------------------------------------------------------------------------------- /include/libdivecomputer/ble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/ble.h -------------------------------------------------------------------------------- /include/libdivecomputer/bluetooth.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/bluetooth.h -------------------------------------------------------------------------------- /include/libdivecomputer/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/buffer.h -------------------------------------------------------------------------------- /include/libdivecomputer/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/common.h -------------------------------------------------------------------------------- /include/libdivecomputer/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/context.h -------------------------------------------------------------------------------- /include/libdivecomputer/custom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/custom.h -------------------------------------------------------------------------------- /include/libdivecomputer/datetime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/datetime.h -------------------------------------------------------------------------------- /include/libdivecomputer/descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/descriptor.h -------------------------------------------------------------------------------- /include/libdivecomputer/device.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/device.h -------------------------------------------------------------------------------- /include/libdivecomputer/divesystem_idive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/divesystem_idive.h -------------------------------------------------------------------------------- /include/libdivecomputer/hw_frog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/hw_frog.h -------------------------------------------------------------------------------- /include/libdivecomputer/hw_ostc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/hw_ostc.h -------------------------------------------------------------------------------- /include/libdivecomputer/hw_ostc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/hw_ostc3.h -------------------------------------------------------------------------------- /include/libdivecomputer/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/ioctl.h -------------------------------------------------------------------------------- /include/libdivecomputer/iostream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/iostream.h -------------------------------------------------------------------------------- /include/libdivecomputer/irda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/irda.h -------------------------------------------------------------------------------- /include/libdivecomputer/iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/iterator.h -------------------------------------------------------------------------------- /include/libdivecomputer/oceanic_atom2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/oceanic_atom2.h -------------------------------------------------------------------------------- /include/libdivecomputer/oceanic_veo250.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/oceanic_veo250.h -------------------------------------------------------------------------------- /include/libdivecomputer/oceanic_vtpro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/oceanic_vtpro.h -------------------------------------------------------------------------------- /include/libdivecomputer/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/parser.h -------------------------------------------------------------------------------- /include/libdivecomputer/reefnet_sensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/reefnet_sensus.h -------------------------------------------------------------------------------- /include/libdivecomputer/reefnet_sensuspro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/reefnet_sensuspro.h -------------------------------------------------------------------------------- /include/libdivecomputer/reefnet_sensusultra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/reefnet_sensusultra.h -------------------------------------------------------------------------------- /include/libdivecomputer/serial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/serial.h -------------------------------------------------------------------------------- /include/libdivecomputer/suunto_d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/suunto_d9.h -------------------------------------------------------------------------------- /include/libdivecomputer/suunto_eon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/suunto_eon.h -------------------------------------------------------------------------------- /include/libdivecomputer/suunto_vyper2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/suunto_vyper2.h -------------------------------------------------------------------------------- /include/libdivecomputer/units.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/units.h -------------------------------------------------------------------------------- /include/libdivecomputer/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/usb.h -------------------------------------------------------------------------------- /include/libdivecomputer/usbhid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/usbhid.h -------------------------------------------------------------------------------- /include/libdivecomputer/version.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/include/libdivecomputer/version.h.in -------------------------------------------------------------------------------- /libdivecomputer.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/libdivecomputer.pc.in -------------------------------------------------------------------------------- /m4/ax_append_compile_flags.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/m4/ax_append_compile_flags.m4 -------------------------------------------------------------------------------- /m4/ax_append_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/m4/ax_append_flag.m4 -------------------------------------------------------------------------------- /m4/ax_check_compile_flag.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/m4/ax_check_compile_flag.m4 -------------------------------------------------------------------------------- /m4/ax_require_defined.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/m4/ax_require_defined.m4 -------------------------------------------------------------------------------- /m4/pkg.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/m4/pkg.m4 -------------------------------------------------------------------------------- /src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/Makefile.am -------------------------------------------------------------------------------- /src/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/aes.c -------------------------------------------------------------------------------- /src/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/aes.h -------------------------------------------------------------------------------- /src/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/array.c -------------------------------------------------------------------------------- /src/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/array.h -------------------------------------------------------------------------------- /src/atomics_cobalt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/atomics_cobalt.c -------------------------------------------------------------------------------- /src/atomics_cobalt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/atomics_cobalt.h -------------------------------------------------------------------------------- /src/atomics_cobalt_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/atomics_cobalt_parser.c -------------------------------------------------------------------------------- /src/ble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/ble.c -------------------------------------------------------------------------------- /src/bluetooth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/bluetooth.c -------------------------------------------------------------------------------- /src/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/buffer.c -------------------------------------------------------------------------------- /src/checksum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/checksum.c -------------------------------------------------------------------------------- /src/checksum.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/checksum.h -------------------------------------------------------------------------------- /src/citizen_aqualand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/citizen_aqualand.c -------------------------------------------------------------------------------- /src/citizen_aqualand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/citizen_aqualand.h -------------------------------------------------------------------------------- /src/citizen_aqualand_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/citizen_aqualand_parser.c -------------------------------------------------------------------------------- /src/cochran_commander.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/cochran_commander.c -------------------------------------------------------------------------------- /src/cochran_commander.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/cochran_commander.h -------------------------------------------------------------------------------- /src/cochran_commander_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/cochran_commander_parser.c -------------------------------------------------------------------------------- /src/common-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/common-private.h -------------------------------------------------------------------------------- /src/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/common.c -------------------------------------------------------------------------------- /src/context-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/context-private.h -------------------------------------------------------------------------------- /src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/context.c -------------------------------------------------------------------------------- /src/cressi_edy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/cressi_edy.c -------------------------------------------------------------------------------- /src/cressi_edy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/cressi_edy.h -------------------------------------------------------------------------------- /src/cressi_edy_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/cressi_edy_parser.c -------------------------------------------------------------------------------- /src/cressi_goa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/cressi_goa.c -------------------------------------------------------------------------------- /src/cressi_goa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/cressi_goa.h -------------------------------------------------------------------------------- /src/cressi_goa_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/cressi_goa_parser.c -------------------------------------------------------------------------------- /src/cressi_leonardo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/cressi_leonardo.c -------------------------------------------------------------------------------- /src/cressi_leonardo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/cressi_leonardo.h -------------------------------------------------------------------------------- /src/cressi_leonardo_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/cressi_leonardo_parser.c -------------------------------------------------------------------------------- /src/custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/custom.c -------------------------------------------------------------------------------- /src/datetime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/datetime.c -------------------------------------------------------------------------------- /src/deepblu_cosmiq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/deepblu_cosmiq.c -------------------------------------------------------------------------------- /src/deepblu_cosmiq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/deepblu_cosmiq.h -------------------------------------------------------------------------------- /src/deepblu_cosmiq_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/deepblu_cosmiq_parser.c -------------------------------------------------------------------------------- /src/deepsix_excursion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/deepsix_excursion.c -------------------------------------------------------------------------------- /src/deepsix_excursion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/deepsix_excursion.h -------------------------------------------------------------------------------- /src/deepsix_excursion_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/deepsix_excursion_parser.c -------------------------------------------------------------------------------- /src/descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/descriptor.c -------------------------------------------------------------------------------- /src/device-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/device-private.h -------------------------------------------------------------------------------- /src/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/device.c -------------------------------------------------------------------------------- /src/diverite_nitekq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/diverite_nitekq.c -------------------------------------------------------------------------------- /src/diverite_nitekq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/diverite_nitekq.h -------------------------------------------------------------------------------- /src/diverite_nitekq_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/diverite_nitekq_parser.c -------------------------------------------------------------------------------- /src/divesoft_freedom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/divesoft_freedom.c -------------------------------------------------------------------------------- /src/divesoft_freedom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/divesoft_freedom.h -------------------------------------------------------------------------------- /src/divesoft_freedom_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/divesoft_freedom_parser.c -------------------------------------------------------------------------------- /src/divesystem_idive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/divesystem_idive.c -------------------------------------------------------------------------------- /src/divesystem_idive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/divesystem_idive.h -------------------------------------------------------------------------------- /src/divesystem_idive_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/divesystem_idive_parser.c -------------------------------------------------------------------------------- /src/field-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/field-cache.c -------------------------------------------------------------------------------- /src/field-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/field-cache.h -------------------------------------------------------------------------------- /src/garmin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/garmin.c -------------------------------------------------------------------------------- /src/garmin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/garmin.h -------------------------------------------------------------------------------- /src/garmin_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/garmin_parser.c -------------------------------------------------------------------------------- /src/halcyon_symbios.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/halcyon_symbios.c -------------------------------------------------------------------------------- /src/halcyon_symbios.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/halcyon_symbios.h -------------------------------------------------------------------------------- /src/halcyon_symbios_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/halcyon_symbios_parser.c -------------------------------------------------------------------------------- /src/hdlc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/hdlc.c -------------------------------------------------------------------------------- /src/hdlc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/hdlc.h -------------------------------------------------------------------------------- /src/hw_frog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/hw_frog.c -------------------------------------------------------------------------------- /src/hw_frog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/hw_frog.h -------------------------------------------------------------------------------- /src/hw_ostc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/hw_ostc.c -------------------------------------------------------------------------------- /src/hw_ostc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/hw_ostc.h -------------------------------------------------------------------------------- /src/hw_ostc3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/hw_ostc3.c -------------------------------------------------------------------------------- /src/hw_ostc3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/hw_ostc3.h -------------------------------------------------------------------------------- /src/hw_ostc_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/hw_ostc_parser.c -------------------------------------------------------------------------------- /src/ihex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/ihex.c -------------------------------------------------------------------------------- /src/ihex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/ihex.h -------------------------------------------------------------------------------- /src/iostream-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/iostream-private.h -------------------------------------------------------------------------------- /src/iostream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/iostream.c -------------------------------------------------------------------------------- /src/irda.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/irda.c -------------------------------------------------------------------------------- /src/iterator-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/iterator-private.h -------------------------------------------------------------------------------- /src/iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/iterator.c -------------------------------------------------------------------------------- /src/libdivecomputer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/libdivecomputer.rc -------------------------------------------------------------------------------- /src/libdivecomputer.symbols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/libdivecomputer.symbols -------------------------------------------------------------------------------- /src/liquivision_lynx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/liquivision_lynx.c -------------------------------------------------------------------------------- /src/liquivision_lynx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/liquivision_lynx.h -------------------------------------------------------------------------------- /src/liquivision_lynx_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/liquivision_lynx_parser.c -------------------------------------------------------------------------------- /src/mares_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mares_common.c -------------------------------------------------------------------------------- /src/mares_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mares_common.h -------------------------------------------------------------------------------- /src/mares_darwin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mares_darwin.c -------------------------------------------------------------------------------- /src/mares_darwin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mares_darwin.h -------------------------------------------------------------------------------- /src/mares_darwin_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mares_darwin_parser.c -------------------------------------------------------------------------------- /src/mares_iconhd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mares_iconhd.c -------------------------------------------------------------------------------- /src/mares_iconhd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mares_iconhd.h -------------------------------------------------------------------------------- /src/mares_iconhd_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mares_iconhd_parser.c -------------------------------------------------------------------------------- /src/mares_nemo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mares_nemo.c -------------------------------------------------------------------------------- /src/mares_nemo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mares_nemo.h -------------------------------------------------------------------------------- /src/mares_nemo_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mares_nemo_parser.c -------------------------------------------------------------------------------- /src/mares_puck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mares_puck.c -------------------------------------------------------------------------------- /src/mares_puck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mares_puck.h -------------------------------------------------------------------------------- /src/mclean_extreme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mclean_extreme.c -------------------------------------------------------------------------------- /src/mclean_extreme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mclean_extreme.h -------------------------------------------------------------------------------- /src/mclean_extreme_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/mclean_extreme_parser.c -------------------------------------------------------------------------------- /src/oceanic_atom2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceanic_atom2.c -------------------------------------------------------------------------------- /src/oceanic_atom2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceanic_atom2.h -------------------------------------------------------------------------------- /src/oceanic_atom2_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceanic_atom2_parser.c -------------------------------------------------------------------------------- /src/oceanic_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceanic_common.c -------------------------------------------------------------------------------- /src/oceanic_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceanic_common.h -------------------------------------------------------------------------------- /src/oceanic_veo250.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceanic_veo250.c -------------------------------------------------------------------------------- /src/oceanic_veo250.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceanic_veo250.h -------------------------------------------------------------------------------- /src/oceanic_veo250_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceanic_veo250_parser.c -------------------------------------------------------------------------------- /src/oceanic_vtpro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceanic_vtpro.c -------------------------------------------------------------------------------- /src/oceanic_vtpro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceanic_vtpro.h -------------------------------------------------------------------------------- /src/oceanic_vtpro_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceanic_vtpro_parser.c -------------------------------------------------------------------------------- /src/oceans_s1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceans_s1.c -------------------------------------------------------------------------------- /src/oceans_s1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceans_s1.h -------------------------------------------------------------------------------- /src/oceans_s1_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceans_s1_common.c -------------------------------------------------------------------------------- /src/oceans_s1_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceans_s1_common.h -------------------------------------------------------------------------------- /src/oceans_s1_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/oceans_s1_parser.c -------------------------------------------------------------------------------- /src/packet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/packet.c -------------------------------------------------------------------------------- /src/packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/packet.h -------------------------------------------------------------------------------- /src/parser-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/parser-private.h -------------------------------------------------------------------------------- /src/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/parser.c -------------------------------------------------------------------------------- /src/pelagic_i330r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/pelagic_i330r.c -------------------------------------------------------------------------------- /src/pelagic_i330r.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/pelagic_i330r.h -------------------------------------------------------------------------------- /src/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/platform.c -------------------------------------------------------------------------------- /src/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/platform.h -------------------------------------------------------------------------------- /src/rbstream.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/rbstream.c -------------------------------------------------------------------------------- /src/rbstream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/rbstream.h -------------------------------------------------------------------------------- /src/reefnet_sensus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/reefnet_sensus.c -------------------------------------------------------------------------------- /src/reefnet_sensus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/reefnet_sensus.h -------------------------------------------------------------------------------- /src/reefnet_sensus_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/reefnet_sensus_parser.c -------------------------------------------------------------------------------- /src/reefnet_sensuspro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/reefnet_sensuspro.c -------------------------------------------------------------------------------- /src/reefnet_sensuspro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/reefnet_sensuspro.h -------------------------------------------------------------------------------- /src/reefnet_sensuspro_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/reefnet_sensuspro_parser.c -------------------------------------------------------------------------------- /src/reefnet_sensusultra.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/reefnet_sensusultra.c -------------------------------------------------------------------------------- /src/reefnet_sensusultra.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/reefnet_sensusultra.h -------------------------------------------------------------------------------- /src/reefnet_sensusultra_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/reefnet_sensusultra_parser.c -------------------------------------------------------------------------------- /src/ringbuffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/ringbuffer.c -------------------------------------------------------------------------------- /src/ringbuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/ringbuffer.h -------------------------------------------------------------------------------- /src/seac_screen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/seac_screen.c -------------------------------------------------------------------------------- /src/seac_screen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/seac_screen.h -------------------------------------------------------------------------------- /src/seac_screen_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/seac_screen_common.c -------------------------------------------------------------------------------- /src/seac_screen_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/seac_screen_common.h -------------------------------------------------------------------------------- /src/seac_screen_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/seac_screen_parser.c -------------------------------------------------------------------------------- /src/serial_posix.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/serial_posix.c -------------------------------------------------------------------------------- /src/serial_win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/serial_win32.c -------------------------------------------------------------------------------- /src/shearwater_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/shearwater_common.c -------------------------------------------------------------------------------- /src/shearwater_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/shearwater_common.h -------------------------------------------------------------------------------- /src/shearwater_petrel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/shearwater_petrel.c -------------------------------------------------------------------------------- /src/shearwater_petrel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/shearwater_petrel.h -------------------------------------------------------------------------------- /src/shearwater_predator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/shearwater_predator.c -------------------------------------------------------------------------------- /src/shearwater_predator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/shearwater_predator.h -------------------------------------------------------------------------------- /src/shearwater_predator_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/shearwater_predator_parser.c -------------------------------------------------------------------------------- /src/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/socket.c -------------------------------------------------------------------------------- /src/socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/socket.h -------------------------------------------------------------------------------- /src/sporasub_sp2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/sporasub_sp2.c -------------------------------------------------------------------------------- /src/sporasub_sp2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/sporasub_sp2.h -------------------------------------------------------------------------------- /src/sporasub_sp2_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/sporasub_sp2_parser.c -------------------------------------------------------------------------------- /src/suunto_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_common.c -------------------------------------------------------------------------------- /src/suunto_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_common.h -------------------------------------------------------------------------------- /src/suunto_common2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_common2.c -------------------------------------------------------------------------------- /src/suunto_common2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_common2.h -------------------------------------------------------------------------------- /src/suunto_d9.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_d9.c -------------------------------------------------------------------------------- /src/suunto_d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_d9.h -------------------------------------------------------------------------------- /src/suunto_d9_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_d9_parser.c -------------------------------------------------------------------------------- /src/suunto_eon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_eon.c -------------------------------------------------------------------------------- /src/suunto_eon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_eon.h -------------------------------------------------------------------------------- /src/suunto_eon_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_eon_parser.c -------------------------------------------------------------------------------- /src/suunto_eonsteel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_eonsteel.c -------------------------------------------------------------------------------- /src/suunto_eonsteel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_eonsteel.h -------------------------------------------------------------------------------- /src/suunto_eonsteel_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_eonsteel_parser.c -------------------------------------------------------------------------------- /src/suunto_solution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_solution.c -------------------------------------------------------------------------------- /src/suunto_solution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_solution.h -------------------------------------------------------------------------------- /src/suunto_solution_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_solution_parser.c -------------------------------------------------------------------------------- /src/suunto_vyper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_vyper.c -------------------------------------------------------------------------------- /src/suunto_vyper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_vyper.h -------------------------------------------------------------------------------- /src/suunto_vyper2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_vyper2.c -------------------------------------------------------------------------------- /src/suunto_vyper2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_vyper2.h -------------------------------------------------------------------------------- /src/suunto_vyper_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/suunto_vyper_parser.c -------------------------------------------------------------------------------- /src/tecdiving_divecomputereu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/tecdiving_divecomputereu.c -------------------------------------------------------------------------------- /src/tecdiving_divecomputereu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/tecdiving_divecomputereu.h -------------------------------------------------------------------------------- /src/tecdiving_divecomputereu_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/tecdiving_divecomputereu_parser.c -------------------------------------------------------------------------------- /src/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/timer.c -------------------------------------------------------------------------------- /src/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/timer.h -------------------------------------------------------------------------------- /src/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/usb.c -------------------------------------------------------------------------------- /src/usb_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/usb_storage.c -------------------------------------------------------------------------------- /src/usbhid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/usbhid.c -------------------------------------------------------------------------------- /src/uwatec_aladin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/uwatec_aladin.c -------------------------------------------------------------------------------- /src/uwatec_aladin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/uwatec_aladin.h -------------------------------------------------------------------------------- /src/uwatec_memomouse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/uwatec_memomouse.c -------------------------------------------------------------------------------- /src/uwatec_memomouse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/uwatec_memomouse.h -------------------------------------------------------------------------------- /src/uwatec_memomouse_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/uwatec_memomouse_parser.c -------------------------------------------------------------------------------- /src/uwatec_smart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/uwatec_smart.c -------------------------------------------------------------------------------- /src/uwatec_smart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/uwatec_smart.h -------------------------------------------------------------------------------- /src/uwatec_smart_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/uwatec_smart_parser.c -------------------------------------------------------------------------------- /src/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/version.c -------------------------------------------------------------------------------- /src/zeagle_n2ition3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/zeagle_n2ition3.c -------------------------------------------------------------------------------- /src/zeagle_n2ition3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/subsurface/libdc/HEAD/src/zeagle_n2ition3.h --------------------------------------------------------------------------------