From add253ca9eee79f97de5bfd25a456102f49bef86 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Sun, 18 Jun 2017 15:50:37 +0900 Subject: Convert to new libdivecomputer custom IO model Instead of being "custom serial", it's a IO model that allows serial or packet modes, independently of each other (ie you can have a bluetooth device that does serial over BT rfcomm and packet-based communication over BLE GATT with the same serial operations that describe both cases). Signed-off-by: Linus Torvalds --- core/libdivecomputer.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'core/libdivecomputer.h') diff --git a/core/libdivecomputer.h b/core/libdivecomputer.h index 19f09fdfa..a618f49f2 100644 --- a/core/libdivecomputer.h +++ b/core/libdivecomputer.h @@ -11,8 +11,8 @@ #include #include #include -#ifdef SSRF_CUSTOM_SERIAL -#include +#ifdef SSRF_CUSTOM_IO +#include #endif #include "dive.h" @@ -56,12 +56,12 @@ extern double progress_bar_fraction; extern char *logfile_name; extern char *dumpfile_name; -#if SSRF_CUSTOM_SERIAL +#if SSRF_CUSTOM_IO // WTF. this symbol never shows up at link time -//extern dc_custom_serial_t qt_serial_ops; +//extern dc_custom_io_t qt_serial_ops; // Thats why I've worked around it with a stupid helper returning it. -dc_custom_serial_t* get_qt_serial_ops(); -extern dc_custom_serial_t serial_ftdi_ops; +dc_custom_io_t* get_qt_serial_ops(); +extern dc_custom_io_t serial_ftdi_ops; #endif #ifdef __cplusplus -- cgit v1.2.3-70-g09d2