├── .gitignore ├── DJIDebuger.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── DJIDebuger.xcscmblueprint │ └── xcuserdata │ │ └── zlinoliver.xcuserdatad │ │ └── UserInterfaceState.xcuserstate ├── xcshareddata │ └── xcschemes │ │ └── DJIDebuger.xcscheme └── xcuserdata │ ├── ares.xcuserdatad │ └── xcschemes │ │ ├── DJIDebuger.xcscheme │ │ └── xcschememanagement.plist │ └── zlinoliver.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── DJIDebuger ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon-60@2x.png │ │ ├── Icon-60@3x.png │ │ ├── Icon-76.png │ │ ├── Icon-76@2x.png │ │ └── Icon-83.5@2x.png │ ├── Contents.json │ ├── icon_circle_green_1.imageset │ │ ├── Contents.json │ │ ├── icon_circle_green_1.png │ │ ├── icon_circle_green_1@2x.png │ │ └── icon_circle_green_1@3x.png │ ├── icon_circle_green_2.imageset │ │ ├── Contents.json │ │ ├── icon_circle_green_2.png │ │ ├── icon_circle_green_2@2x.png │ │ └── icon_circle_green_2@3x.png │ ├── icon_circle_red_1.imageset │ │ ├── Contents.json │ │ ├── icon_circle_red_1.png │ │ ├── icon_circle_red_1@2x.png │ │ └── icon_circle_red_1@3x.png │ ├── icon_circle_red_2.imageset │ │ ├── Contents.json │ │ ├── icon_circle_red_2.png │ │ ├── icon_circle_red_2@2x.png │ │ └── icon_circle_red_2@3x.png │ ├── icon_dji.imageset │ │ ├── Contents.json │ │ ├── icon_dji.png │ │ ├── icon_dji@2x.png │ │ └── icon_dji@3x.png │ ├── icon_navigation_bar.imageset │ │ ├── Contents.json │ │ ├── icon_navgation_bar@2x.png │ │ ├── icon_navigation_bar.png │ │ └── icon_navigation_bar@3x.png │ ├── icon_rc.imageset │ │ ├── Contents.json │ │ ├── icon_rc.png │ │ ├── icon_rc@2x.png │ │ └── icon_rc@3x.png │ ├── icon_rect.imageset │ │ ├── Contents.json │ │ ├── icon_rect.png │ │ ├── icon_rect@2x.png │ │ └── icon_rect@3x.png │ ├── icon_tab_bkgnd.imageset │ │ ├── Contents.json │ │ ├── icon_tab_bkgnd.png │ │ ├── icon_tab_bkgnd@2x.png │ │ └── icon_tab_bkgnd@3x.png │ ├── icon_tab_left.imageset │ │ ├── Contents.json │ │ ├── icon_tab_left-1.png │ │ ├── icon_tab_left@2x.png │ │ └── icon_tab_left@3x.png │ ├── icon_tab_right.imageset │ │ ├── Contents.json │ │ ├── icon_tab_right.png │ │ ├── icon_tab_right@2x.png │ │ └── icon_tab_right@3x.png │ └── icon_wifi.imageset │ │ ├── Contents.json │ │ ├── icon_wifi.png │ │ ├── icon_wifi@2x.png │ │ └── icon_wifi@3x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── DJIDRootViewController.h ├── DJIDRootViewController.m ├── DJIDebuger.entitlements ├── Info.plist └── main.mm ├── DJIDebugerTests ├── DJIDebugerTests.m └── Info.plist ├── LICENSE ├── Podfile └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | # gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore 4 | .DS_Store 5 | 6 | ## Build generated 7 | build/ 8 | DerivedData 9 | Pods/ 10 | Podfile.lock 11 | 12 | ## Various settings 13 | *.pbxuser 14 | !default.pbxuser 15 | *.mode1v3 16 | !default.mode1v3 17 | *.mode2v3 18 | !default.mode2v3 19 | *.perspectivev3 20 | !default.perspectivev3 21 | xcuserdata 22 | 23 | ## Other 24 | *.xccheckout 25 | *.moved-aside 26 | *.xcuserstate 27 | *.xcscmblueprint 28 | Podfile.lock 29 | 30 | *.xcworkspace 31 | 32 | ## Obj-C/Swift specific 33 | *.hmap 34 | *.ipa 35 | *.xcworkspace 36 | 37 | # CocoaPods 38 | # 39 | # We recommend against adding the Pods directory to your .gitignore. However 40 | # you should judge for yourself, the pros and cons are mentioned at: 41 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control 42 | # 43 | #Pods/ 44 | 45 | # Carthage 46 | # 47 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 48 | # Carthage/Checkouts 49 | 50 | Carthage/Build 51 | 52 | build 53 | Output 54 | -------------------------------------------------------------------------------- /DJIDebuger.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- 1 | // !$*UTF8*$! 2 | { 3 | archiveVersion = 1; 4 | classes = { 5 | }; 6 | objectVersion = 46; 7 | objects = { 8 | 9 | /* Begin PBXBuildFile section */ 10 | 3B40CAD61BCCB89C00EF6E3D /* main.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3B40CAD51BCCB89C00EF6E3D /* main.mm */; }; 11 | 3B40CAD91BCCB89C00EF6E3D /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B40CAD81BCCB89C00EF6E3D /* AppDelegate.m */; }; 12 | 3B40CADC1BCCB89C00EF6E3D /* DJIDRootViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B40CADB1BCCB89C00EF6E3D /* DJIDRootViewController.m */; }; 13 | 3B40CADF1BCCB89C00EF6E3D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3B40CADD1BCCB89C00EF6E3D /* Main.storyboard */; }; 14 | 3B40CAE11BCCB89C00EF6E3D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 3B40CAE01BCCB89C00EF6E3D /* Assets.xcassets */; }; 15 | 3B40CAE41BCCB89C00EF6E3D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 3B40CAE21BCCB89C00EF6E3D /* LaunchScreen.storyboard */; }; 16 | 3B40CAEF1BCCB89C00EF6E3D /* DJIDebugerTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 3B40CAEE1BCCB89C00EF6E3D /* DJIDebugerTests.m */; }; 17 | A450D2B11DCB2BF50084A74C /* ExternalAccessory.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = A450D2B01DCB2BF50084A74C /* ExternalAccessory.framework */; }; 18 | F9812801E61D922BC2E9FC56 /* libPods-DJIDebuger.a in Frameworks */ = {isa = PBXBuildFile; fileRef = DE8C0BF0C5BFA952B355C9F1 /* libPods-DJIDebuger.a */; }; 19 | /* End PBXBuildFile section */ 20 | 21 | /* Begin PBXContainerItemProxy section */ 22 | 3B40CAEB1BCCB89C00EF6E3D /* PBXContainerItemProxy */ = { 23 | isa = PBXContainerItemProxy; 24 | containerPortal = 3B40CAC91BCCB89C00EF6E3D /* Project object */; 25 | proxyType = 1; 26 | remoteGlobalIDString = 3B40CAD01BCCB89C00EF6E3D; 27 | remoteInfo = DJIDebuger; 28 | }; 29 | /* End PBXContainerItemProxy section */ 30 | 31 | /* Begin PBXCopyFilesBuildPhase section */ 32 | DE248D111BE7957200610DD6 /* Embed Frameworks */ = { 33 | isa = PBXCopyFilesBuildPhase; 34 | buildActionMask = 2147483647; 35 | dstPath = ""; 36 | dstSubfolderSpec = 10; 37 | files = ( 38 | ); 39 | name = "Embed Frameworks"; 40 | runOnlyForDeploymentPostprocessing = 0; 41 | }; 42 | /* End PBXCopyFilesBuildPhase section */ 43 | 44 | /* Begin PBXFileReference section */ 45 | 387EE3BD1BD222700002C877 /* DJIDebuger.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = DJIDebuger.entitlements; sourceTree = ""; }; 46 | 3B40CAD11BCCB89C00EF6E3D /* DJIDebuger.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = DJIDebuger.app; sourceTree = BUILT_PRODUCTS_DIR; }; 47 | 3B40CAD51BCCB89C00EF6E3D /* main.mm */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.cpp.objcpp; path = main.mm; sourceTree = ""; }; 48 | 3B40CAD71BCCB89C00EF6E3D /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = ""; }; 49 | 3B40CAD81BCCB89C00EF6E3D /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = ""; }; 50 | 3B40CADA1BCCB89C00EF6E3D /* DJIDRootViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = DJIDRootViewController.h; sourceTree = ""; }; 51 | 3B40CADB1BCCB89C00EF6E3D /* DJIDRootViewController.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DJIDRootViewController.m; sourceTree = ""; }; 52 | 3B40CADE1BCCB89C00EF6E3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; 53 | 3B40CAE01BCCB89C00EF6E3D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; 54 | 3B40CAE31BCCB89C00EF6E3D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; 55 | 3B40CAE51BCCB89C00EF6E3D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 56 | 3B40CAEA1BCCB89C00EF6E3D /* DJIDebugerTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = DJIDebugerTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; }; 57 | 3B40CAEE1BCCB89C00EF6E3D /* DJIDebugerTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = DJIDebugerTests.m; sourceTree = ""; }; 58 | 3B40CAF01BCCB89C00EF6E3D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; 59 | 4BF028878A3A12C9D954E78B /* Pods-DJIDebuger.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DJIDebuger.release.xcconfig"; path = "Pods/Target Support Files/Pods-DJIDebuger/Pods-DJIDebuger.release.xcconfig"; sourceTree = ""; }; 60 | 705E1F100678A7DF50B6716B /* Pods-DJIDebuger.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-DJIDebuger.debug.xcconfig"; path = "Pods/Target Support Files/Pods-DJIDebuger/Pods-DJIDebuger.debug.xcconfig"; sourceTree = ""; }; 61 | A450D2B01DCB2BF50084A74C /* ExternalAccessory.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ExternalAccessory.framework; path = System/Library/Frameworks/ExternalAccessory.framework; sourceTree = SDKROOT; }; 62 | DE8C0BF0C5BFA952B355C9F1 /* libPods-DJIDebuger.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; path = "libPods-DJIDebuger.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 63 | /* End PBXFileReference section */ 64 | 65 | /* Begin PBXFrameworksBuildPhase section */ 66 | 3B40CACE1BCCB89C00EF6E3D /* Frameworks */ = { 67 | isa = PBXFrameworksBuildPhase; 68 | buildActionMask = 2147483647; 69 | files = ( 70 | A450D2B11DCB2BF50084A74C /* ExternalAccessory.framework in Frameworks */, 71 | F9812801E61D922BC2E9FC56 /* libPods-DJIDebuger.a in Frameworks */, 72 | ); 73 | runOnlyForDeploymentPostprocessing = 0; 74 | }; 75 | 3B40CAE71BCCB89C00EF6E3D /* Frameworks */ = { 76 | isa = PBXFrameworksBuildPhase; 77 | buildActionMask = 2147483647; 78 | files = ( 79 | ); 80 | runOnlyForDeploymentPostprocessing = 0; 81 | }; 82 | /* End PBXFrameworksBuildPhase section */ 83 | 84 | /* Begin PBXGroup section */ 85 | 3B40CAC81BCCB89C00EF6E3D = { 86 | isa = PBXGroup; 87 | children = ( 88 | 3B40CAD31BCCB89C00EF6E3D /* DJIDebuger */, 89 | 3B40CAED1BCCB89C00EF6E3D /* DJIDebugerTests */, 90 | 3B40CAD21BCCB89C00EF6E3D /* Products */, 91 | F340565B331ACADAAA46AD1E /* Pods */, 92 | F3C62E5D926A06B79EC2C2C3 /* Frameworks */, 93 | ); 94 | sourceTree = ""; 95 | }; 96 | 3B40CAD21BCCB89C00EF6E3D /* Products */ = { 97 | isa = PBXGroup; 98 | children = ( 99 | 3B40CAD11BCCB89C00EF6E3D /* DJIDebuger.app */, 100 | 3B40CAEA1BCCB89C00EF6E3D /* DJIDebugerTests.xctest */, 101 | ); 102 | name = Products; 103 | sourceTree = ""; 104 | }; 105 | 3B40CAD31BCCB89C00EF6E3D /* DJIDebuger */ = { 106 | isa = PBXGroup; 107 | children = ( 108 | 3B40CAD71BCCB89C00EF6E3D /* AppDelegate.h */, 109 | 3B40CAD81BCCB89C00EF6E3D /* AppDelegate.m */, 110 | 3B40CADA1BCCB89C00EF6E3D /* DJIDRootViewController.h */, 111 | 3B40CADB1BCCB89C00EF6E3D /* DJIDRootViewController.m */, 112 | 3B40CADD1BCCB89C00EF6E3D /* Main.storyboard */, 113 | 3B40CAE01BCCB89C00EF6E3D /* Assets.xcassets */, 114 | 3B40CAE21BCCB89C00EF6E3D /* LaunchScreen.storyboard */, 115 | 3B40CAE51BCCB89C00EF6E3D /* Info.plist */, 116 | 3B40CAFC1BCCE05600EF6E3D /* Frameworks */, 117 | 3B40CAD41BCCB89C00EF6E3D /* Supporting Files */, 118 | ); 119 | path = DJIDebuger; 120 | sourceTree = ""; 121 | }; 122 | 3B40CAD41BCCB89C00EF6E3D /* Supporting Files */ = { 123 | isa = PBXGroup; 124 | children = ( 125 | 387EE3BD1BD222700002C877 /* DJIDebuger.entitlements */, 126 | 3B40CAD51BCCB89C00EF6E3D /* main.mm */, 127 | ); 128 | name = "Supporting Files"; 129 | sourceTree = ""; 130 | }; 131 | 3B40CAED1BCCB89C00EF6E3D /* DJIDebugerTests */ = { 132 | isa = PBXGroup; 133 | children = ( 134 | 3B40CAEE1BCCB89C00EF6E3D /* DJIDebugerTests.m */, 135 | 3B40CAF01BCCB89C00EF6E3D /* Info.plist */, 136 | ); 137 | path = DJIDebugerTests; 138 | sourceTree = ""; 139 | }; 140 | 3B40CAFC1BCCE05600EF6E3D /* Frameworks */ = { 141 | isa = PBXGroup; 142 | children = ( 143 | ); 144 | name = Frameworks; 145 | sourceTree = ""; 146 | }; 147 | F340565B331ACADAAA46AD1E /* Pods */ = { 148 | isa = PBXGroup; 149 | children = ( 150 | 705E1F100678A7DF50B6716B /* Pods-DJIDebuger.debug.xcconfig */, 151 | 4BF028878A3A12C9D954E78B /* Pods-DJIDebuger.release.xcconfig */, 152 | ); 153 | name = Pods; 154 | sourceTree = ""; 155 | }; 156 | F3C62E5D926A06B79EC2C2C3 /* Frameworks */ = { 157 | isa = PBXGroup; 158 | children = ( 159 | A450D2B01DCB2BF50084A74C /* ExternalAccessory.framework */, 160 | DE8C0BF0C5BFA952B355C9F1 /* libPods-DJIDebuger.a */, 161 | ); 162 | name = Frameworks; 163 | sourceTree = ""; 164 | }; 165 | /* End PBXGroup section */ 166 | 167 | /* Begin PBXNativeTarget section */ 168 | 3B40CAD01BCCB89C00EF6E3D /* DJIDebuger */ = { 169 | isa = PBXNativeTarget; 170 | buildConfigurationList = 3B40CAF31BCCB89C00EF6E3D /* Build configuration list for PBXNativeTarget "DJIDebuger" */; 171 | buildPhases = ( 172 | 5D11CDA5BADB60438C0CA19A /* [CP] Check Pods Manifest.lock */, 173 | 3B40CACD1BCCB89C00EF6E3D /* Sources */, 174 | 3B40CACE1BCCB89C00EF6E3D /* Frameworks */, 175 | 3B40CACF1BCCB89C00EF6E3D /* Resources */, 176 | DE248D111BE7957200610DD6 /* Embed Frameworks */, 177 | B3DDBF0C2EE795941A0FC84A /* [CP] Embed Pods Frameworks */, 178 | 47E874A65338C01DE5241E1F /* [CP] Copy Pods Resources */, 179 | ); 180 | buildRules = ( 181 | ); 182 | dependencies = ( 183 | ); 184 | name = DJIDebuger; 185 | productName = DJIDebuger; 186 | productReference = 3B40CAD11BCCB89C00EF6E3D /* DJIDebuger.app */; 187 | productType = "com.apple.product-type.application"; 188 | }; 189 | 3B40CAE91BCCB89C00EF6E3D /* DJIDebugerTests */ = { 190 | isa = PBXNativeTarget; 191 | buildConfigurationList = 3B40CAF61BCCB89C00EF6E3D /* Build configuration list for PBXNativeTarget "DJIDebugerTests" */; 192 | buildPhases = ( 193 | 3B40CAE61BCCB89C00EF6E3D /* Sources */, 194 | 3B40CAE71BCCB89C00EF6E3D /* Frameworks */, 195 | 3B40CAE81BCCB89C00EF6E3D /* Resources */, 196 | ); 197 | buildRules = ( 198 | ); 199 | dependencies = ( 200 | 3B40CAEC1BCCB89C00EF6E3D /* PBXTargetDependency */, 201 | ); 202 | name = DJIDebugerTests; 203 | productName = DJIDebugerTests; 204 | productReference = 3B40CAEA1BCCB89C00EF6E3D /* DJIDebugerTests.xctest */; 205 | productType = "com.apple.product-type.bundle.unit-test"; 206 | }; 207 | /* End PBXNativeTarget section */ 208 | 209 | /* Begin PBXProject section */ 210 | 3B40CAC91BCCB89C00EF6E3D /* Project object */ = { 211 | isa = PBXProject; 212 | attributes = { 213 | LastUpgradeCheck = 0700; 214 | ORGANIZATIONNAME = DJI; 215 | TargetAttributes = { 216 | 3B40CAD01BCCB89C00EF6E3D = { 217 | CreatedOnToolsVersion = 7.0; 218 | DevelopmentTeam = 7UL3LRJL93; 219 | SystemCapabilities = { 220 | com.apple.BackgroundModes = { 221 | enabled = 1; 222 | }; 223 | com.apple.DataProtection = { 224 | enabled = 1; 225 | }; 226 | com.apple.WAC = { 227 | enabled = 0; 228 | }; 229 | }; 230 | }; 231 | 3B40CAE91BCCB89C00EF6E3D = { 232 | CreatedOnToolsVersion = 7.0; 233 | TestTargetID = 3B40CAD01BCCB89C00EF6E3D; 234 | }; 235 | }; 236 | }; 237 | buildConfigurationList = 3B40CACC1BCCB89C00EF6E3D /* Build configuration list for PBXProject "DJIDebuger" */; 238 | compatibilityVersion = "Xcode 3.2"; 239 | developmentRegion = English; 240 | hasScannedForEncodings = 0; 241 | knownRegions = ( 242 | en, 243 | Base, 244 | ); 245 | mainGroup = 3B40CAC81BCCB89C00EF6E3D; 246 | productRefGroup = 3B40CAD21BCCB89C00EF6E3D /* Products */; 247 | projectDirPath = ""; 248 | projectRoot = ""; 249 | targets = ( 250 | 3B40CAD01BCCB89C00EF6E3D /* DJIDebuger */, 251 | 3B40CAE91BCCB89C00EF6E3D /* DJIDebugerTests */, 252 | ); 253 | }; 254 | /* End PBXProject section */ 255 | 256 | /* Begin PBXResourcesBuildPhase section */ 257 | 3B40CACF1BCCB89C00EF6E3D /* Resources */ = { 258 | isa = PBXResourcesBuildPhase; 259 | buildActionMask = 2147483647; 260 | files = ( 261 | 3B40CAE41BCCB89C00EF6E3D /* LaunchScreen.storyboard in Resources */, 262 | 3B40CAE11BCCB89C00EF6E3D /* Assets.xcassets in Resources */, 263 | 3B40CADF1BCCB89C00EF6E3D /* Main.storyboard in Resources */, 264 | ); 265 | runOnlyForDeploymentPostprocessing = 0; 266 | }; 267 | 3B40CAE81BCCB89C00EF6E3D /* Resources */ = { 268 | isa = PBXResourcesBuildPhase; 269 | buildActionMask = 2147483647; 270 | files = ( 271 | ); 272 | runOnlyForDeploymentPostprocessing = 0; 273 | }; 274 | /* End PBXResourcesBuildPhase section */ 275 | 276 | /* Begin PBXShellScriptBuildPhase section */ 277 | 47E874A65338C01DE5241E1F /* [CP] Copy Pods Resources */ = { 278 | isa = PBXShellScriptBuildPhase; 279 | buildActionMask = 2147483647; 280 | files = ( 281 | ); 282 | inputPaths = ( 283 | ); 284 | name = "[CP] Copy Pods Resources"; 285 | outputPaths = ( 286 | ); 287 | runOnlyForDeploymentPostprocessing = 0; 288 | shellPath = /bin/sh; 289 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-DJIDebuger/Pods-DJIDebuger-resources.sh\"\n"; 290 | showEnvVarsInLog = 0; 291 | }; 292 | 5D11CDA5BADB60438C0CA19A /* [CP] Check Pods Manifest.lock */ = { 293 | isa = PBXShellScriptBuildPhase; 294 | buildActionMask = 2147483647; 295 | files = ( 296 | ); 297 | inputPaths = ( 298 | ); 299 | name = "[CP] Check Pods Manifest.lock"; 300 | outputPaths = ( 301 | ); 302 | runOnlyForDeploymentPostprocessing = 0; 303 | shellPath = /bin/sh; 304 | shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n"; 305 | showEnvVarsInLog = 0; 306 | }; 307 | B3DDBF0C2EE795941A0FC84A /* [CP] Embed Pods Frameworks */ = { 308 | isa = PBXShellScriptBuildPhase; 309 | buildActionMask = 2147483647; 310 | files = ( 311 | ); 312 | inputPaths = ( 313 | ); 314 | name = "[CP] Embed Pods Frameworks"; 315 | outputPaths = ( 316 | ); 317 | runOnlyForDeploymentPostprocessing = 0; 318 | shellPath = /bin/sh; 319 | shellScript = "\"${SRCROOT}/Pods/Target Support Files/Pods-DJIDebuger/Pods-DJIDebuger-frameworks.sh\"\n"; 320 | showEnvVarsInLog = 0; 321 | }; 322 | /* End PBXShellScriptBuildPhase section */ 323 | 324 | /* Begin PBXSourcesBuildPhase section */ 325 | 3B40CACD1BCCB89C00EF6E3D /* Sources */ = { 326 | isa = PBXSourcesBuildPhase; 327 | buildActionMask = 2147483647; 328 | files = ( 329 | 3B40CADC1BCCB89C00EF6E3D /* DJIDRootViewController.m in Sources */, 330 | 3B40CAD91BCCB89C00EF6E3D /* AppDelegate.m in Sources */, 331 | 3B40CAD61BCCB89C00EF6E3D /* main.mm in Sources */, 332 | ); 333 | runOnlyForDeploymentPostprocessing = 0; 334 | }; 335 | 3B40CAE61BCCB89C00EF6E3D /* Sources */ = { 336 | isa = PBXSourcesBuildPhase; 337 | buildActionMask = 2147483647; 338 | files = ( 339 | 3B40CAEF1BCCB89C00EF6E3D /* DJIDebugerTests.m in Sources */, 340 | ); 341 | runOnlyForDeploymentPostprocessing = 0; 342 | }; 343 | /* End PBXSourcesBuildPhase section */ 344 | 345 | /* Begin PBXTargetDependency section */ 346 | 3B40CAEC1BCCB89C00EF6E3D /* PBXTargetDependency */ = { 347 | isa = PBXTargetDependency; 348 | target = 3B40CAD01BCCB89C00EF6E3D /* DJIDebuger */; 349 | targetProxy = 3B40CAEB1BCCB89C00EF6E3D /* PBXContainerItemProxy */; 350 | }; 351 | /* End PBXTargetDependency section */ 352 | 353 | /* Begin PBXVariantGroup section */ 354 | 3B40CADD1BCCB89C00EF6E3D /* Main.storyboard */ = { 355 | isa = PBXVariantGroup; 356 | children = ( 357 | 3B40CADE1BCCB89C00EF6E3D /* Base */, 358 | ); 359 | name = Main.storyboard; 360 | sourceTree = ""; 361 | }; 362 | 3B40CAE21BCCB89C00EF6E3D /* LaunchScreen.storyboard */ = { 363 | isa = PBXVariantGroup; 364 | children = ( 365 | 3B40CAE31BCCB89C00EF6E3D /* Base */, 366 | ); 367 | name = LaunchScreen.storyboard; 368 | sourceTree = ""; 369 | }; 370 | /* End PBXVariantGroup section */ 371 | 372 | /* Begin XCBuildConfiguration section */ 373 | 3B40CAF11BCCB89C00EF6E3D /* Debug */ = { 374 | isa = XCBuildConfiguration; 375 | buildSettings = { 376 | ALWAYS_SEARCH_USER_PATHS = NO; 377 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 378 | CLANG_CXX_LIBRARY = "libc++"; 379 | CLANG_ENABLE_MODULES = YES; 380 | CLANG_ENABLE_OBJC_ARC = YES; 381 | CLANG_WARN_BOOL_CONVERSION = YES; 382 | CLANG_WARN_CONSTANT_CONVERSION = YES; 383 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 384 | CLANG_WARN_EMPTY_BODY = YES; 385 | CLANG_WARN_ENUM_CONVERSION = YES; 386 | CLANG_WARN_INT_CONVERSION = YES; 387 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 388 | CLANG_WARN_UNREACHABLE_CODE = YES; 389 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 390 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 391 | COPY_PHASE_STRIP = NO; 392 | DEBUG_INFORMATION_FORMAT = dwarf; 393 | ENABLE_STRICT_OBJC_MSGSEND = YES; 394 | ENABLE_TESTABILITY = YES; 395 | GCC_C_LANGUAGE_STANDARD = gnu99; 396 | GCC_DYNAMIC_NO_PIC = NO; 397 | GCC_NO_COMMON_BLOCKS = YES; 398 | GCC_OPTIMIZATION_LEVEL = 0; 399 | GCC_PREPROCESSOR_DEFINITIONS = ( 400 | "DEBUG=1", 401 | "$(inherited)", 402 | ); 403 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 404 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 405 | GCC_WARN_UNDECLARED_SELECTOR = YES; 406 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 407 | GCC_WARN_UNUSED_FUNCTION = YES; 408 | GCC_WARN_UNUSED_VARIABLE = YES; 409 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 410 | MTL_ENABLE_DEBUG_INFO = YES; 411 | ONLY_ACTIVE_ARCH = YES; 412 | SDKROOT = iphoneos; 413 | TARGETED_DEVICE_FAMILY = "1,2"; 414 | }; 415 | name = Debug; 416 | }; 417 | 3B40CAF21BCCB89C00EF6E3D /* Release */ = { 418 | isa = XCBuildConfiguration; 419 | buildSettings = { 420 | ALWAYS_SEARCH_USER_PATHS = NO; 421 | CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; 422 | CLANG_CXX_LIBRARY = "libc++"; 423 | CLANG_ENABLE_MODULES = YES; 424 | CLANG_ENABLE_OBJC_ARC = YES; 425 | CLANG_WARN_BOOL_CONVERSION = YES; 426 | CLANG_WARN_CONSTANT_CONVERSION = YES; 427 | CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; 428 | CLANG_WARN_EMPTY_BODY = YES; 429 | CLANG_WARN_ENUM_CONVERSION = YES; 430 | CLANG_WARN_INT_CONVERSION = YES; 431 | CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; 432 | CLANG_WARN_UNREACHABLE_CODE = YES; 433 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; 434 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 435 | COPY_PHASE_STRIP = NO; 436 | DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; 437 | ENABLE_NS_ASSERTIONS = NO; 438 | ENABLE_STRICT_OBJC_MSGSEND = YES; 439 | GCC_C_LANGUAGE_STANDARD = gnu99; 440 | GCC_NO_COMMON_BLOCKS = YES; 441 | GCC_WARN_64_TO_32_BIT_CONVERSION = YES; 442 | GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; 443 | GCC_WARN_UNDECLARED_SELECTOR = YES; 444 | GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; 445 | GCC_WARN_UNUSED_FUNCTION = YES; 446 | GCC_WARN_UNUSED_VARIABLE = YES; 447 | IPHONEOS_DEPLOYMENT_TARGET = 9.0; 448 | MTL_ENABLE_DEBUG_INFO = NO; 449 | SDKROOT = iphoneos; 450 | TARGETED_DEVICE_FAMILY = "1,2"; 451 | VALIDATE_PRODUCT = YES; 452 | }; 453 | name = Release; 454 | }; 455 | 3B40CAF41BCCB89C00EF6E3D /* Debug */ = { 456 | isa = XCBuildConfiguration; 457 | baseConfigurationReference = 705E1F100678A7DF50B6716B /* Pods-DJIDebuger.debug.xcconfig */; 458 | buildSettings = { 459 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 460 | CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES; 461 | CODE_SIGN_ENTITLEMENTS = DJIDebuger/DJIDebuger.entitlements; 462 | CODE_SIGN_IDENTITY = "iPhone Developer"; 463 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 464 | DEVELOPMENT_TEAM = 7UL3LRJL93; 465 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES; 466 | ENABLE_BITCODE = NO; 467 | FRAMEWORK_SEARCH_PATHS = "$(inherited)"; 468 | HEADER_SEARCH_PATHS = ( 469 | "\"$(SRCROOT)/../../../DJI-SDK3-I\"", 470 | "\"$(SRCROOT)/../../DJI-MidWare-I/DJIMidware/DJIMidware\"/**", 471 | "\"$(SRCROOT)/../../DJI-Logger-I/DJILogger\"/**", 472 | ); 473 | INFOPLIST_FILE = DJIDebuger/Info.plist; 474 | IPHONEOS_DEPLOYMENT_TARGET = 8.1; 475 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 476 | OTHER_LDFLAGS = "-ObjC"; 477 | PRODUCT_BUNDLE_IDENTIFIER = com.dji.bridge; 478 | PRODUCT_NAME = "$(TARGET_NAME)"; 479 | PROVISIONING_PROFILE = ""; 480 | }; 481 | name = Debug; 482 | }; 483 | 3B40CAF51BCCB89C00EF6E3D /* Release */ = { 484 | isa = XCBuildConfiguration; 485 | baseConfigurationReference = 4BF028878A3A12C9D954E78B /* Pods-DJIDebuger.release.xcconfig */; 486 | buildSettings = { 487 | ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; 488 | CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES = YES; 489 | CODE_SIGN_ENTITLEMENTS = DJIDebuger/DJIDebuger.entitlements; 490 | CODE_SIGN_IDENTITY = "iPhone Developer"; 491 | "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; 492 | DEVELOPMENT_TEAM = 7UL3LRJL93; 493 | EMBEDDED_CONTENT_CONTAINS_SWIFT = YES; 494 | ENABLE_BITCODE = NO; 495 | FRAMEWORK_SEARCH_PATHS = "$(inherited)"; 496 | HEADER_SEARCH_PATHS = ( 497 | "\"$(SRCROOT)/../../../DJI-SDK3-I\"", 498 | "\"$(SRCROOT)/../../DJI-MidWare-I/DJIMidware/DJIMidware\"/**", 499 | "\"$(SRCROOT)/../../DJI-Logger-I/DJILogger\"/**", 500 | ); 501 | INFOPLIST_FILE = DJIDebuger/Info.plist; 502 | IPHONEOS_DEPLOYMENT_TARGET = 8.1; 503 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; 504 | OTHER_LDFLAGS = "-ObjC"; 505 | PRODUCT_BUNDLE_IDENTIFIER = com.dji.bridge; 506 | PRODUCT_NAME = "$(TARGET_NAME)"; 507 | PROVISIONING_PROFILE = ""; 508 | }; 509 | name = Release; 510 | }; 511 | 3B40CAF71BCCB89C00EF6E3D /* Debug */ = { 512 | isa = XCBuildConfiguration; 513 | buildSettings = { 514 | BUNDLE_LOADER = "$(TEST_HOST)"; 515 | INFOPLIST_FILE = DJIDebugerTests/Info.plist; 516 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 517 | PRODUCT_BUNDLE_IDENTIFIER = DJI.DJIDebugerTests; 518 | PRODUCT_NAME = "$(TARGET_NAME)"; 519 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DJIDebuger.app/DJIDebuger"; 520 | }; 521 | name = Debug; 522 | }; 523 | 3B40CAF81BCCB89C00EF6E3D /* Release */ = { 524 | isa = XCBuildConfiguration; 525 | buildSettings = { 526 | BUNDLE_LOADER = "$(TEST_HOST)"; 527 | INFOPLIST_FILE = DJIDebugerTests/Info.plist; 528 | LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; 529 | PRODUCT_BUNDLE_IDENTIFIER = DJI.DJIDebugerTests; 530 | PRODUCT_NAME = "$(TARGET_NAME)"; 531 | TEST_HOST = "$(BUILT_PRODUCTS_DIR)/DJIDebuger.app/DJIDebuger"; 532 | }; 533 | name = Release; 534 | }; 535 | /* End XCBuildConfiguration section */ 536 | 537 | /* Begin XCConfigurationList section */ 538 | 3B40CACC1BCCB89C00EF6E3D /* Build configuration list for PBXProject "DJIDebuger" */ = { 539 | isa = XCConfigurationList; 540 | buildConfigurations = ( 541 | 3B40CAF11BCCB89C00EF6E3D /* Debug */, 542 | 3B40CAF21BCCB89C00EF6E3D /* Release */, 543 | ); 544 | defaultConfigurationIsVisible = 0; 545 | defaultConfigurationName = Release; 546 | }; 547 | 3B40CAF31BCCB89C00EF6E3D /* Build configuration list for PBXNativeTarget "DJIDebuger" */ = { 548 | isa = XCConfigurationList; 549 | buildConfigurations = ( 550 | 3B40CAF41BCCB89C00EF6E3D /* Debug */, 551 | 3B40CAF51BCCB89C00EF6E3D /* Release */, 552 | ); 553 | defaultConfigurationIsVisible = 0; 554 | defaultConfigurationName = Release; 555 | }; 556 | 3B40CAF61BCCB89C00EF6E3D /* Build configuration list for PBXNativeTarget "DJIDebugerTests" */ = { 557 | isa = XCConfigurationList; 558 | buildConfigurations = ( 559 | 3B40CAF71BCCB89C00EF6E3D /* Debug */, 560 | 3B40CAF81BCCB89C00EF6E3D /* Release */, 561 | ); 562 | defaultConfigurationIsVisible = 0; 563 | defaultConfigurationName = Release; 564 | }; 565 | /* End XCConfigurationList section */ 566 | }; 567 | rootObject = 3B40CAC91BCCB89C00EF6E3D /* Project object */; 568 | } 569 | -------------------------------------------------------------------------------- /DJIDebuger.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /DJIDebuger.xcodeproj/project.xcworkspace/xcshareddata/DJIDebuger.xcscmblueprint: -------------------------------------------------------------------------------- 1 | { 2 | "DVTSourceControlWorkspaceBlueprintPrimaryRemoteRepositoryKey" : "2D40537C1A47C4A4FB2A287A6D90813A26E2BC2C", 3 | "DVTSourceControlWorkspaceBlueprintWorkingCopyRepositoryLocationsKey" : { 4 | 5 | }, 6 | "DVTSourceControlWorkspaceBlueprintWorkingCopyStatesKey" : { 7 | "93F0A401E49107C99959E6952ABAF47F85C46FE9" : 0, 8 | "2D40537C1A47C4A4FB2A287A6D90813A26E2BC2C" : 0, 9 | "FF0D3C4C22A075989D4F328A65F089073E4A775B" : 0 10 | }, 11 | "DVTSourceControlWorkspaceBlueprintIdentifierKey" : "6C55A934-35C2-4976-A5CF-2A938671FE1B", 12 | "DVTSourceControlWorkspaceBlueprintWorkingCopyPathsKey" : { 13 | "93F0A401E49107C99959E6952ABAF47F85C46FE9" : "ios-remotelogger\/", 14 | "2D40537C1A47C4A4FB2A287A6D90813A26E2BC2C" : "ios-bridge\/", 15 | "FF0D3C4C22A075989D4F328A65F089073E4A775B" : "DJI-MidWare-I\/" 16 | }, 17 | "DVTSourceControlWorkspaceBlueprintNameKey" : "DJIDebuger", 18 | "DVTSourceControlWorkspaceBlueprintVersion" : 204, 19 | "DVTSourceControlWorkspaceBlueprintRelativePathToProjectKey" : "DJIDebuger\/DJIDebuger.xcodeproj", 20 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoriesKey" : [ 21 | { 22 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "ssh:\/\/us003.fly-access.com:7999\/msdk\/ios-bridge.git", 23 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", 24 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "2D40537C1A47C4A4FB2A287A6D90813A26E2BC2C" 25 | }, 26 | { 27 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "ssh:\/\/us003.fly-access.com:7999\/msdk\/ios-remotelogger.git", 28 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", 29 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "93F0A401E49107C99959E6952ABAF47F85C46FE9" 30 | }, 31 | { 32 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryURLKey" : "djigit11-rd.dji.com:iOS\/DJI-MidWare-I.git", 33 | "DVTSourceControlWorkspaceBlueprintRemoteRepositorySystemKey" : "com.apple.dt.Xcode.sourcecontrol.Git", 34 | "DVTSourceControlWorkspaceBlueprintRemoteRepositoryIdentifierKey" : "FF0D3C4C22A075989D4F328A65F089073E4A775B" 35 | } 36 | ] 37 | } -------------------------------------------------------------------------------- /DJIDebuger.xcodeproj/project.xcworkspace/xcuserdata/zlinoliver.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger.xcodeproj/project.xcworkspace/xcuserdata/zlinoliver.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DJIDebuger.xcodeproj/xcshareddata/xcschemes/DJIDebuger.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 53 | 54 | 64 | 66 | 72 | 73 | 74 | 75 | 76 | 77 | 83 | 85 | 91 | 92 | 93 | 94 | 96 | 97 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /DJIDebuger.xcodeproj/xcuserdata/ares.xcuserdatad/xcschemes/DJIDebuger.xcscheme: -------------------------------------------------------------------------------- 1 | 2 | 5 | 8 | 9 | 15 | 21 | 22 | 23 | 24 | 25 | 30 | 31 | 33 | 39 | 40 | 41 | 42 | 43 | 49 | 50 | 51 | 52 | 53 | 54 | 64 | 66 | 72 | 73 | 74 | 75 | 76 | 77 | 83 | 85 | 91 | 92 | 93 | 94 | 96 | 97 | 100 | 101 | 102 | -------------------------------------------------------------------------------- /DJIDebuger.xcodeproj/xcuserdata/ares.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SchemeUserState 6 | 7 | DJIDebuger.xcscheme 8 | 9 | orderHint 10 | 0 11 | 12 | 13 | SuppressBuildableAutocreation 14 | 15 | 3B40CAD01BCCB89C00EF6E3D 16 | 17 | primary 18 | 19 | 20 | 3B40CAE91BCCB89C00EF6E3D 21 | 22 | primary 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /DJIDebuger.xcodeproj/xcuserdata/zlinoliver.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | SuppressBuildableAutocreation 6 | 7 | 3B40CAD01BCCB89C00EF6E3D 8 | 9 | primary 10 | 11 | 12 | 3B40CAE91BCCB89C00EF6E3D 13 | 14 | primary 15 | 16 | 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /DJIDebuger/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // DJIDebuger 4 | // 5 | // Created by DJI on 15/10/13. 6 | // Copyright © 2015年 DJI. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | 16 | @end 17 | 18 | -------------------------------------------------------------------------------- /DJIDebuger/AppDelegate.m: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.m 3 | // DJIDebuger 4 | // 5 | // Created by DJI on 15/10/13. 6 | // Copyright © 2015年 DJI. All rights reserved. 7 | // 8 | 9 | #import "AppDelegate.h" 10 | 11 | @interface AppDelegate () 12 | 13 | @end 14 | 15 | @implementation AppDelegate 16 | 17 | 18 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { 19 | return YES; 20 | } 21 | 22 | - (void)applicationWillResignActive:(UIApplication *)application { 23 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. 24 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. 25 | } 26 | 27 | - (void)applicationDidEnterBackground:(UIApplication *)application { 28 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. 29 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. 30 | } 31 | 32 | - (void)applicationWillEnterForeground:(UIApplication *)application { 33 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. 34 | } 35 | 36 | - (void)applicationDidBecomeActive:(UIApplication *)application { 37 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. 38 | } 39 | 40 | - (void)applicationWillTerminate:(UIApplication *)application { 41 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. 42 | } 43 | 44 | @end 45 | -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "iphone", 5 | "size" : "29x29", 6 | "scale" : "2x" 7 | }, 8 | { 9 | "idiom" : "iphone", 10 | "size" : "29x29", 11 | "scale" : "3x" 12 | }, 13 | { 14 | "idiom" : "iphone", 15 | "size" : "40x40", 16 | "scale" : "2x" 17 | }, 18 | { 19 | "idiom" : "iphone", 20 | "size" : "40x40", 21 | "scale" : "3x" 22 | }, 23 | { 24 | "size" : "60x60", 25 | "idiom" : "iphone", 26 | "filename" : "Icon-60@2x.png", 27 | "scale" : "2x" 28 | }, 29 | { 30 | "size" : "60x60", 31 | "idiom" : "iphone", 32 | "filename" : "Icon-60@3x.png", 33 | "scale" : "3x" 34 | }, 35 | { 36 | "idiom" : "ipad", 37 | "size" : "29x29", 38 | "scale" : "1x" 39 | }, 40 | { 41 | "idiom" : "ipad", 42 | "size" : "29x29", 43 | "scale" : "2x" 44 | }, 45 | { 46 | "idiom" : "ipad", 47 | "size" : "40x40", 48 | "scale" : "1x" 49 | }, 50 | { 51 | "idiom" : "ipad", 52 | "size" : "40x40", 53 | "scale" : "2x" 54 | }, 55 | { 56 | "size" : "76x76", 57 | "idiom" : "ipad", 58 | "filename" : "Icon-76.png", 59 | "scale" : "1x" 60 | }, 61 | { 62 | "size" : "76x76", 63 | "idiom" : "ipad", 64 | "filename" : "Icon-76@2x.png", 65 | "scale" : "2x" 66 | }, 67 | { 68 | "size" : "83.5x83.5", 69 | "idiom" : "ipad", 70 | "filename" : "Icon-83.5@2x.png", 71 | "scale" : "2x" 72 | } 73 | ], 74 | "info" : { 75 | "version" : 1, 76 | "author" : "xcode" 77 | } 78 | } -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/AppIcon.appiconset/Icon-60@2x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/AppIcon.appiconset/Icon-60@3x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/AppIcon.appiconset/Icon-76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/AppIcon.appiconset/Icon-76.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/AppIcon.appiconset/Icon-76@2x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/AppIcon.appiconset/Icon-83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/AppIcon.appiconset/Icon-83.5@2x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_green_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_circle_green_1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon_circle_green_1@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon_circle_green_1@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_green_1.imageset/icon_circle_green_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_circle_green_1.imageset/icon_circle_green_1.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_green_1.imageset/icon_circle_green_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_circle_green_1.imageset/icon_circle_green_1@2x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_green_1.imageset/icon_circle_green_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_circle_green_1.imageset/icon_circle_green_1@3x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_green_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_circle_green_2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon_circle_green_2@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon_circle_green_2@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_green_2.imageset/icon_circle_green_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_circle_green_2.imageset/icon_circle_green_2.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_green_2.imageset/icon_circle_green_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_circle_green_2.imageset/icon_circle_green_2@2x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_green_2.imageset/icon_circle_green_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_circle_green_2.imageset/icon_circle_green_2@3x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_red_1.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_circle_red_1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon_circle_red_1@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon_circle_red_1@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_red_1.imageset/icon_circle_red_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_circle_red_1.imageset/icon_circle_red_1.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_red_1.imageset/icon_circle_red_1@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_circle_red_1.imageset/icon_circle_red_1@2x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_red_1.imageset/icon_circle_red_1@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_circle_red_1.imageset/icon_circle_red_1@3x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_red_2.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_circle_red_2.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon_circle_red_2@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon_circle_red_2@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_red_2.imageset/icon_circle_red_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_circle_red_2.imageset/icon_circle_red_2.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_red_2.imageset/icon_circle_red_2@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_circle_red_2.imageset/icon_circle_red_2@2x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_circle_red_2.imageset/icon_circle_red_2@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_circle_red_2.imageset/icon_circle_red_2@3x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_dji.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_dji.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon_dji@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon_dji@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_dji.imageset/icon_dji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_dji.imageset/icon_dji.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_dji.imageset/icon_dji@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_dji.imageset/icon_dji@2x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_dji.imageset/icon_dji@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_dji.imageset/icon_dji@3x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_navigation_bar.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_navigation_bar.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon_navgation_bar@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon_navigation_bar@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_navigation_bar.imageset/icon_navgation_bar@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_navigation_bar.imageset/icon_navgation_bar@2x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_navigation_bar.imageset/icon_navigation_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_navigation_bar.imageset/icon_navigation_bar.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_navigation_bar.imageset/icon_navigation_bar@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_navigation_bar.imageset/icon_navigation_bar@3x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_rc.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_rc.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon_rc@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon_rc@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_rc.imageset/icon_rc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_rc.imageset/icon_rc.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_rc.imageset/icon_rc@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_rc.imageset/icon_rc@2x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_rc.imageset/icon_rc@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_rc.imageset/icon_rc@3x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_rect.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_rect.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon_rect@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon_rect@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_rect.imageset/icon_rect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_rect.imageset/icon_rect.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_rect.imageset/icon_rect@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_rect.imageset/icon_rect@2x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_rect.imageset/icon_rect@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_rect.imageset/icon_rect@3x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_tab_bkgnd.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_tab_bkgnd.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon_tab_bkgnd@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon_tab_bkgnd@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_tab_bkgnd.imageset/icon_tab_bkgnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_tab_bkgnd.imageset/icon_tab_bkgnd.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_tab_bkgnd.imageset/icon_tab_bkgnd@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_tab_bkgnd.imageset/icon_tab_bkgnd@2x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_tab_bkgnd.imageset/icon_tab_bkgnd@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_tab_bkgnd.imageset/icon_tab_bkgnd@3x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_tab_left.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_tab_left-1.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon_tab_left@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon_tab_left@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_tab_left.imageset/icon_tab_left-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_tab_left.imageset/icon_tab_left-1.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_tab_left.imageset/icon_tab_left@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_tab_left.imageset/icon_tab_left@2x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_tab_left.imageset/icon_tab_left@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_tab_left.imageset/icon_tab_left@3x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_tab_right.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_tab_right.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon_tab_right@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon_tab_right@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_tab_right.imageset/icon_tab_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_tab_right.imageset/icon_tab_right.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_tab_right.imageset/icon_tab_right@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_tab_right.imageset/icon_tab_right@2x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_tab_right.imageset/icon_tab_right@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_tab_right.imageset/icon_tab_right@3x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_wifi.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "icon_wifi.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "icon_wifi@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "icon_wifi@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_wifi.imageset/icon_wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_wifi.imageset/icon_wifi.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_wifi.imageset/icon_wifi@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_wifi.imageset/icon_wifi@2x.png -------------------------------------------------------------------------------- /DJIDebuger/Assets.xcassets/icon_wifi.imageset/icon_wifi@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dji-sdk/iOS-Bridge-App/e1ded69e90024827e1313ff71903e24cd97ad278/DJIDebuger/Assets.xcassets/icon_wifi.imageset/icon_wifi@3x.png -------------------------------------------------------------------------------- /DJIDebuger/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /DJIDebuger/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 162 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | -------------------------------------------------------------------------------- /DJIDebuger/DJIDRootViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // DJIDRootViewController.h 3 | // DJIDebuger 4 | // 5 | // Created by DJI on 15/10/13. 6 | // Copyright © 2015年 DJI. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface DJIDRootViewController : UIViewController 12 | 13 | @end 14 | 15 | -------------------------------------------------------------------------------- /DJIDebuger/DJIDRootViewController.m: -------------------------------------------------------------------------------- 1 | // 2 | // DJIDRootViewController.m 3 | // DJIDebuger 4 | // 5 | // Created by DJI on 15/10/13. 6 | // Copyright © 2015年 DJI. All rights reserved. 7 | // 8 | 9 | #import "DJIDRootViewController.h" 10 | #import 11 | #include 12 | #include 13 | #include 14 | 15 | #define weakSelf(__TARGET__) __weak typeof(self) __TARGET__=self 16 | #define weakReturn(__TARGET__) if(__TARGET__==nil)return; 17 | 18 | #define DJI_SERVICE_OPTION_KEY @"DJI_SERVICE_OPTION_KEY" 19 | #define DJI_DEBUG_ID_NAME_KEY @"DJI_DEBUG_ID_NAME_KEY" 20 | 21 | #define GREEN_IMAGE_1 [UIImage imageNamed:@"icon_circle_green_1"] 22 | #define GREEN_IMAGE_2 [UIImage imageNamed:@"icon_circle_green_2"] 23 | #define RED_IMAGE_1 [UIImage imageNamed:@"icon_circle_red_1"] 24 | #define RED_IMAGE_2 [UIImage imageNamed:@"icon_circle_red_2"] 25 | 26 | @interface DJIDRootViewController () 27 | 28 | @property (assign,nonatomic) pthread_mutex_t serviceMutex; 29 | 30 | // UI 31 | @property (weak,nonatomic) IBOutlet UILabel* debugIdLabel; 32 | @property (weak,nonatomic) IBOutlet UILabel* debugTitleLabel; 33 | 34 | @property (weak,nonatomic) IBOutlet UIImageView* rcImageView1; 35 | @property (weak,nonatomic) IBOutlet UIImageView* rcImageView2; 36 | 37 | @property (weak,nonatomic) IBOutlet UIImageView* wifiImageView1; 38 | @property (weak,nonatomic) IBOutlet UIImageView* wifiImageView2; 39 | 40 | @end 41 | 42 | @implementation DJIDRootViewController 43 | 44 | - (void) updateIPAddress:(NSString*) ipaddress { 45 | weakSelf(target); 46 | dispatch_async(dispatch_get_main_queue(), ^{ 47 | weakReturn(target); 48 | target.debugIdLabel.text = ipaddress; 49 | }); 50 | } 51 | 52 | - (void)viewDidLoad { 53 | [super viewDidLoad]; 54 | 55 | pthread_mutex_init(&_serviceMutex, NULL); 56 | 57 | [self initUI]; 58 | 59 | // Dummy internet request to enforce internet access pop-up window. 60 | NSURLRequest* request = [[NSMutableURLRequest alloc] initWithURL:[NSURL URLWithString:@"http://dev.dji.com"]]; 61 | [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue currentQueue] completionHandler:^(NSURLResponse * _Nullable response, NSData * _Nullable data, NSError * _Nullable connectionError) { 62 | }]; 63 | 64 | weakSelf(target); 65 | dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ 66 | weakReturn(target); 67 | [DJISDKManager startBridgeAppServerWithCompletion:^(NSString * _Nonnull ipaddress) { 68 | [target updateIPAddress:ipaddress]; 69 | }]; 70 | [DJISDKManager setBridgeAppServerDelegate:target]; 71 | }); 72 | } 73 | 74 | - (UIStatusBarStyle) preferredStatusBarStyle { 75 | return UIStatusBarStyleLightContent; 76 | } 77 | 78 | -(void) dealloc 79 | { 80 | pthread_mutex_destroy(&_serviceMutex); 81 | } 82 | 83 | -(void) viewWillAppear:(BOOL)animated 84 | { 85 | [super viewWillAppear:animated]; 86 | [UIApplication sharedApplication].idleTimerDisabled = YES; 87 | } 88 | 89 | -(void) viewWillDisappear:(BOOL)animated 90 | { 91 | [super viewWillDisappear:animated]; 92 | [UIApplication sharedApplication].idleTimerDisabled = NO; 93 | } 94 | 95 | -(void) initUI 96 | { 97 | [self setWiFiConnectionStatus:NO]; 98 | [self setRCConnectionStatus:NO]; 99 | 100 | self.debugIdLabel.text = @""; 101 | 102 | } 103 | 104 | -(void) setRCConnectionStatus:(BOOL)connected 105 | { 106 | if (connected) { 107 | self.rcImageView1.image = GREEN_IMAGE_1; 108 | self.rcImageView2.image = GREEN_IMAGE_2; 109 | } 110 | else 111 | { 112 | self.rcImageView1.image = RED_IMAGE_1; 113 | self.rcImageView2.image = RED_IMAGE_2; 114 | } 115 | } 116 | 117 | -(void) setWiFiConnectionStatus:(BOOL)connected 118 | { 119 | if (connected) { 120 | self.wifiImageView1.image = GREEN_IMAGE_1; 121 | self.wifiImageView2.image = GREEN_IMAGE_2; 122 | } 123 | else 124 | { 125 | self.wifiImageView1.image = RED_IMAGE_1; 126 | self.wifiImageView2.image = RED_IMAGE_2; 127 | } 128 | } 129 | 130 | #pragma mark - UI Action 131 | 132 | -(IBAction) onResetButtonClicked:(id)sender 133 | { 134 | [self setWiFiConnectionStatus:NO]; 135 | weakSelf(target); 136 | dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{ 137 | weakReturn(target); 138 | [DJISDKManager setBridgeAppServerDelegate:target]; 139 | [DJISDKManager startBridgeAppServerWithCompletion:^(NSString * _Nonnull ipaddress) { 140 | [target updateIPAddress:ipaddress]; 141 | }]; 142 | }); 143 | } 144 | 145 | - (void)bridgeAppServerWithRCConnectionStatus:(BOOL)isRCConnected andDebugClientConnectionStatus:(BOOL)isWifiConnected 146 | { 147 | weakSelf(target); 148 | dispatch_async(dispatch_get_main_queue(), ^{ 149 | weakReturn(target); 150 | [target setRCConnectionStatus:isRCConnected]; 151 | [target setWiFiConnectionStatus:isWifiConnected]; 152 | }); 153 | 154 | } 155 | 156 | @end 157 | -------------------------------------------------------------------------------- /DJIDebuger/DJIDebuger.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.developer.default-data-protection 6 | NSFileProtectionComplete 7 | com.apple.external-accessory.wireless-configuration 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /DJIDebuger/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleDisplayName 8 | DJI Bridge 9 | CFBundleExecutable 10 | $(EXECUTABLE_NAME) 11 | CFBundleIcons 12 | 13 | CFBundleIcons~ipad 14 | 15 | CFBundleIdentifier 16 | $(PRODUCT_BUNDLE_IDENTIFIER) 17 | CFBundleInfoDictionaryVersion 18 | 6.0 19 | CFBundleName 20 | $(PRODUCT_NAME) 21 | CFBundlePackageType 22 | APPL 23 | CFBundleShortVersionString 24 | 1.1 25 | CFBundleSignature 26 | ???? 27 | CFBundleVersion 28 | 1 29 | LSRequiresIPhoneOS 30 | 31 | NSAppTransportSecurity 32 | 33 | NSAllowsArbitraryLoads 34 | 35 | 36 | UIBackgroundModes 37 | 38 | external-accessory 39 | 40 | UILaunchStoryboardName 41 | LaunchScreen 42 | UIMainStoryboardFile 43 | Main 44 | UIRequiredDeviceCapabilities 45 | 46 | armv7 47 | 48 | UIRequiresPersistentWiFi 49 | 50 | UISupportedExternalAccessoryProtocols 51 | 52 | com.dji.video 53 | com.dji.protocol 54 | com.dji.common 55 | 56 | UISupportedInterfaceOrientations 57 | 58 | UIInterfaceOrientationPortrait 59 | UIInterfaceOrientationLandscapeLeft 60 | UIInterfaceOrientationLandscapeRight 61 | 62 | UISupportedInterfaceOrientations~ipad 63 | 64 | UIInterfaceOrientationPortrait 65 | UIInterfaceOrientationPortraitUpsideDown 66 | UIInterfaceOrientationLandscapeLeft 67 | UIInterfaceOrientationLandscapeRight 68 | 69 | 70 | 71 | -------------------------------------------------------------------------------- /DJIDebuger/main.mm: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // DJIDebuger 4 | // 5 | // Created by DJI on 15/10/13. 6 | // Copyright © 2015年 DJI. All rights reserved. 7 | // 8 | 9 | #import 10 | #import "AppDelegate.h" 11 | 12 | int main(int argc, char * argv[]) { 13 | @autoreleasepool { 14 | return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class])); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /DJIDebugerTests/DJIDebugerTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // DJIDebugerTests.m 3 | // DJIDebugerTests 4 | // 5 | // Created by DJI on 15/10/13. 6 | // Copyright © 2015年 DJI. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface DJIDebugerTests : XCTestCase 12 | 13 | @end 14 | 15 | @implementation DJIDebugerTests 16 | 17 | - (void)setUp { 18 | [super setUp]; 19 | // Put setup code here. This method is called before the invocation of each test method in the class. 20 | } 21 | 22 | - (void)tearDown { 23 | // Put teardown code here. This method is called after the invocation of each test method in the class. 24 | [super tearDown]; 25 | } 26 | 27 | - (void)testExample { 28 | // This is an example of a functional test case. 29 | // Use XCTAssert and related functions to verify your tests produce the correct results. 30 | } 31 | 32 | - (void)testPerformanceExample { 33 | // This is an example of a performance test case. 34 | [self measureBlock:^{ 35 | // Put the code you want to measure the time of here. 36 | }]; 37 | } 38 | 39 | @end 40 | -------------------------------------------------------------------------------- /DJIDebugerTests/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIdentifier 10 | $(PRODUCT_BUNDLE_IDENTIFIER) 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | $(PRODUCT_NAME) 15 | CFBundlePackageType 16 | BNDL 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1 23 | 24 | 25 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | 2 | The MIT License (MIT) 3 | Copyright (c) 2017 DJI 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- 1 | # platform :ios, '9.0' 2 | 3 | target 'DJIDebuger' do 4 | pod 'DJI-SDK-iOS', '~> 4.2.2’ 5 | end 6 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # DJI Bridge App 2 | 3 | #### This repository is now deprecated, please refer to DJI SDK Bridge App on App Store: . It is only compatible with DJI iOS SDK 4.2.2 and below. 4 | 5 | ## What is This? 6 | 7 | This is an open source project for DJI Bridge App. 8 | 9 | The DJI Bridge App supports for native Xcode debugging with breakpoints. You can use it to debug your [DJI Mobile SDK](https://github.com/dji-sdk/Mobile-SDK-iOS) application for Mavic Pro, Phantom 4, Phantom 3 Professional, Phantom 3 Advanced, Inspire 1, M100 and other products using USB/MFI connection between RC and your app. 10 | 11 | For more details, please check the [DJI Bridge App Tutorial](https://github.com/DJI-Mobile-SDK/DJIBridgeAppDemo). 12 | 13 | ## Prerequisites 14 | 15 | - Xcode 8.0+ or higher 16 | - Deployment target of 9.0 or higher 17 | 18 | ## SDK Installation with CocoaPods 19 | 20 | Since this project has been integrated with [DJI iOS SDK CocoaPods](https://cocoapods.org/pods/DJI-SDK-iOS) now, please check the following steps to install **DJISDK.framework** using CocoaPods after you downloading this project: 21 | 22 | **1.** Install CocoaPods 23 | 24 | Open Terminal and change to the download project's directory, enter the following command to install it: 25 | 26 | ~~~ 27 | sudo gem install cocoapods 28 | ~~~ 29 | 30 | The process may take a long time, please wait. For further installation instructions, please check [this guides](https://guides.cocoapods.org/using/getting-started.html#getting-started). 31 | 32 | **2.** Install SDK with CocoaPods in the Project 33 | 34 | Run the following command in the project's directory: 35 | 36 | ~~~ 37 | pod install 38 | ~~~ 39 | 40 | If you install it successfully, you may get the messages similar to the followings: 41 | 42 | ~~~ 43 | Analyzing dependencies 44 | Downloading dependencies 45 | Installing DJI-SDK-iOS (4.2.2) 46 | Generating Pods project 47 | Integrating client project 48 | 49 | [!] Please close any current Xcode sessions and use `DJIDebuger.xcworkspace` for this project from now on. 50 | Pod installation complete! There is 1 dependency from the Podfile and 1 total pod 51 | installed. 52 | ~~~ 53 | 54 | ## What's More? 55 | 56 | If you want, you can customize your own Bridge app with [DJI Mobile SDK](https://github.com/dji-sdk/Mobile-SDK-iOS), please check the project's source code. 57 | 58 | 59 | ## License 60 | 61 | DJI Bridge App is released under the MIT license. See LICENSE for details. 62 | 63 | ## Join Us 64 | 65 | DJI is looking for all kinds of Software Engineers to continue building the Future of Possible. Available positions in Shenzhen, China and around the world. If you are interested, please send your resume to . For more details, and list of all our global offices, please check . 66 | 67 | DJI 招软件工程师啦,based在深圳,如果你想和我们一起把DJI产品做得更好,请发送简历到 . 详情请浏览 . 68 | --------------------------------------------------------------------------------