Changeset 268 in flair-src for trunk/lib/FlairMeta/src
- Timestamp:
- Oct 4, 2018, 1:49:49 PM (6 years ago)
- Location:
- trunk/lib/FlairMeta/src
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/lib/FlairMeta/src/HdsX8.cpp
r186 r268 15 15 // 16 16 /*********************************************************************/ 17 #ifdef ARMV7A 17 18 18 19 #include "HdsX8.h" … … 76 77 } // end namespace meta 77 78 } // end namespace flair 79 80 #endif -
trunk/lib/FlairMeta/src/SimuX4.cpp
r261 r268 15 15 // 16 16 /*********************************************************************/ 17 #ifdef CORE2_64 17 18 18 19 #include "SimuX4.h" … … 102 103 } // end namespace meta 103 104 } // end namespace flair 105 106 #endif -
trunk/lib/FlairMeta/src/SimuX8.cpp
r245 r268 15 15 // 16 16 /*********************************************************************/ 17 #ifdef CORE2_64 17 18 18 19 #include "SimuX8.h" … … 102 103 } // end namespace meta 103 104 } // end namespace flair 105 106 #endif -
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 -
trunk/lib/FlairMeta/src/XAir.cpp
r157 r268 15 15 // 16 16 /*********************************************************************/ 17 #ifdef ARMV7A 17 18 18 19 #include "XAir.h" … … 72 73 } // end namespace meta 73 74 } // end namespace flair 75 76 #endif
Note:
See TracChangeset
for help on using the changeset viewer.