dji-sdk

java.lang.UnsatisfiedLinkError: No implementation found for byte[] dji.midware.natives.SDKRelativeJNI.native_getXXXX

时光怂恿深爱的人放手 提交于 2019-12-12 17:04:03
问题 SDK Version : com.dji:dji-sdk-provided:4.9 com.dji:dji-uxsdk:4.9 com.dji:dji-sdk:4.9 Android Studio Version : 3.5.0 Gradle Version : 5.4.1 Android device Version : 5.1.1 (huawei pad) enviroment : muti moudle and dji-sdk not import in main moudle problem description : I had init sdk in my application first,when I run project,program crash when init and then I got this problem in logcat. can you help me? thanx very much! I had tried Dji-SDK 4.10 also but doesn't work still gradle: api ('com.dji

DJI drone location - Mobile SDK

可紊 提交于 2019-12-11 17:39:41
问题 I am currently trying to implement a waypoint using DJI's mobile SDK. However, it is difficult to obtain the position of the drones when connected without simulation. What should I do? 回答1: Are you outdoors with a good GPS signal? 回答2: It is difficult to determine your real question but if the aircraft has a clear view of the sky then it will attach to a number of GPS satellites and report location through the call as shown below. If you don't have a clear view to the sky (technically

Problem with the installation of dji-osdk on raspberry pi 3 for dji matrice 100

て烟熏妆下的殇ゞ 提交于 2019-12-11 16:54:14
问题 I have a raspberry pi 3 with ubuntu mate 16.04 on it and i installed ROS. I'm following this guide to install the osdk on the raspberry. At point 6, when i type catkin_make the raspberry freezes at 94% and doesn't finish the compilation (i think that is because raspberry runs out of ram). How can i do? 回答1: Adding swap space would allow the Raspberry Pi to use the SD Card as extra memory. Accessing this memory will be very slow, but it can be useful in cases like this. To create a swapfile

Issue with running DJI UX SDK 4.7

馋奶兔 提交于 2019-12-11 10:45:14
问题 Trying to run DJI UX SDK 4.7 Android sample application and it crashes every time I try going into the Complete Demo of UI Widgets. It appears when the Helper.install(MApplication.this); is called that it is looking for a field called pathList on dalvik.system.PathClassLoader that is not found. Even though I set a breakpoint and I can see it clearly defined on the object. With more debugging I found this message in the LogCat: 08-25 06:19:38.785 6735-6735/net.skyora.overwatch A/libc: Fatal

Data Values Logged Remain Unchanged - DJI UXSDKDemo

核能气质少年 提交于 2019-12-11 06:55:56
问题 I am logging IMU Information from a DJI Drone via the iOS DJI UXSDKDemo. Using the method below, I am able to receive a log of the four desired values (IMU State, IMU Count, Gyroscope, and Accelerometer). When I run the app connected to a drone, however, the logs are stored, the logs from these flights list each of the four values as zero. The drone I am connecting the app to is not flying, yet even when I move the drone around, the values do not change. Do I need to import any files to the

Error:(72) unknown element <receiver> found

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-10 12:34:03
问题 I am using Dji-SDK. Recently i migrated the SDK from version 4.2 to 4.3.2. After changing the dji-sdk.aar in the libs folder i am not able to build because of the merge issues in the manifest. The merged manifest in build is getting created as follows. ... <uses-permission android:name="android.permission.USE_CREDENTIALS" /> <receiver android:name="dji.logic.receiver.DJIPilotStartupReceiver" android:exported="true" android:permission="dji.permission.sdk.wifi" > <intent-filter> <action android

How to use getDataFromMSDK()?

耗尽温柔 提交于 2019-12-09 04:28:26
I have an upstream from the mobile device to the OSDK(sending a message). The data is being sent correctly but I am having issues receiving it. When looking at the OSDK API Reference, I expected the functions to use to be under the MobileCommunication class reference. The only thing I found related to upstreaming was the getDataFromMSDK function. I don't get how this function works, and also don't understand how receiving data on the OSDK actually works. I also don't see this function in any mobile communication samples. How do I setup a constant listener for incoming MSDK data? How does the

How to use getDataFromMSDK()?

允我心安 提交于 2019-12-08 03:45:14
问题 I have an upstream from the mobile device to the OSDK(sending a message). The data is being sent correctly but I am having issues receiving it. When looking at the OSDK API Reference, I expected the functions to use to be under the MobileCommunication class reference. The only thing I found related to upstreaming was the getDataFromMSDK function. I don't get how this function works, and also don't understand how receiving data on the OSDK actually works. I also don't see this function in any

Retrieve images from a DJI Drone with EXIF data

痞子三分冷 提交于 2019-12-02 04:16:57
问题 I'm using the DJISDK in iOS to download pictures from the aircraft. I'm using the downloadSelectedFiles method from PlaybackManager class. Here is my process callback: process: { (data, error) in if data != nil{ if self.downloadedImageData != nil{ self.downloadedImageData!.append(data!) }else{ self.downloadedImageData = data! } } } And this is filecompletition callback: fileCompletion: { self.downloadedFilesCount += 1 let image = UIImage(data: self.downloadedImageData!) if let img = image {

Retrieve images from a DJI Drone with EXIF data

邮差的信 提交于 2019-12-02 02:04:47
I'm using the DJISDK in iOS to download pictures from the aircraft. I'm using the downloadSelectedFiles method from PlaybackManager class. Here is my process callback: process: { (data, error) in if data != nil{ if self.downloadedImageData != nil{ self.downloadedImageData!.append(data!) }else{ self.downloadedImageData = data! } } } And this is filecompletition callback: fileCompletion: { self.downloadedFilesCount += 1 let image = UIImage(data: self.downloadedImageData!) if let img = image { self.downloadedImagesArray?.append(img) } self.downloadedImageData = nil } I'm correctly retrieving the