Changeset 268 in flair-src for trunk/lib/FlairMeta/src/UavFactory.cpp
- Timestamp:
- Oct 4, 2018, 1:49:49 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairMeta/src/UavFactory.cpp
r157 r268 57 57 } 58 58 59 #ifdef ARMV7A 59 60 if (type == "hds_x4") { 60 61 getFrameworkManager()->Err("UAV type %s not yet implemented\n", type.c_str()); … … 67 68 getFrameworkManager()->Err("UAV type %s not yet implemented\n", type.c_str()); 68 69 return NULL; 69 } else if (type.compare(0, 7, "x4_simu") == 0) { 70 } else { 71 getFrameworkManager()->Err("UAV type %s unknown\n", type.c_str()); 72 return NULL; 73 } 74 #endif 75 #ifdef CORE2_64 76 if (type.compare(0, 7, "x4_simu") == 0) { 70 77 int simu_id = 0; 71 78 if (type.size() > 7) { … … 83 90 return NULL; 84 91 } 92 #endif 85 93 } 86 94
Note:
See TracChangeset
for help on using the changeset viewer.