From 02fc78570e7d0a44264a9084a4884581adafe218 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Mon, 24 Sep 2018 06:23:59 -0700 Subject: [PATCH] macOS: always list 'FTDI' as a serial connection We now link against the user space FTDI driver. Signed-off-by: Dirk Hohndel --- core/macos.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/core/macos.c b/core/macos.c index 05353b5ba..2d9832348 100644 --- a/core/macos.c +++ b/core/macos.c @@ -104,6 +104,9 @@ int enumerate_devices(device_callback_t callback, void *userdata, unsigned int t struct dirent *ep = NULL; size_t i; if (transport & DC_TRANSPORT_SERIAL) { + // on Mac we always support FTDI now + callback("FTDI", userdata); + const char *dirname = "/dev"; const char *patterns[] = { "tty.*",