diff --git a/src/x86/x86.c b/src/x86/x86.c index 52c4b20..0f51c96 100644 --- a/src/x86/x86.c +++ b/src/x86/x86.c @@ -72,9 +72,12 @@ mraa_x86_platform() platform_type = MRAA_INTEL_GALILEO_GEN1; plat = mraa_intel_galileo_rev_d(); } else if (strncasecmp(line, "MinnowBoard Compatible", 22) == 0) { - platform_type = MRAA_INTEL_MINNOWBOARD_MAX; - plat = mraa_intel_minnowboard_byt_compatible(); - } else { + platform_type = MRAA_INTEL_MINNOWBOARD_MAX; + plat = mraa_intel_minnowboard_byt_compatible(); + } else if (strncasecmp(line, "MinnowBoard Turbot", 18) == 0) { + platform_type = MRAA_INTEL_MINNOWBOARD_MAX; + plat = mraa_intel_minnowboard_byt_compatible(); + } else { syslog(LOG_ERR, "Platform not supported, not initialising"); platform_type = MRAA_UNKNOWN_PLATFORM; }