Private
Public Access
2
0

cmake: add -DFTDID2xx and use FindFtd2xx.cmake

Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
This commit is contained in:
Brendan Le Foll
2015-06-26 13:44:38 +01:00
parent e170e21031
commit e353508e30
7 changed files with 119 additions and 5 deletions

View File

@@ -115,11 +115,12 @@ mraa_init()
// This is a platform extender so create null base platform if one doesn't already exist
if (plat == NULL) {
plat = (mraa_board_t*) calloc(1, sizeof(mraa_board_t));
plat->platform_name = "Null platform";
plat->platform_name = "Unknown platform";
if (plat != NULL) {
int usb_platform_type = mraa_usb_platform_extender(plat);
if (platform_type == MRAA_UNKNOWN_PLATFORM)
if (platform_type == MRAA_UNKNOWN_PLATFORM) {
platform_type = usb_platform_type;
}
}
}
if (plat == NULL) {