Skip to content

Commit

Permalink
removed parameters loading restriction.
Browse files Browse the repository at this point in the history
  • Loading branch information
m4gr3d committed Apr 18, 2015
1 parent be0b498 commit 002a362
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 30 deletions.
4 changes: 2 additions & 2 deletions AidlLib/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 21
versionCode 20103
versionName '2.1.03'
versionCode 20104
versionName '2.1.04'
}

defaultPublishConfig "release"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -111,32 +111,6 @@ public boolean hasInfo() {
|| (values != null && !values.isEmpty());
}

public static void checkParameterName(String name) throws Exception {
if (name.equals("SYSID_SW_MREV")) {
throw new Exception("ExludedName");
} else if (name.contains("WP_TOTAL")) {
throw new Exception("ExludedName");
} else if (name.contains("CMD_TOTAL")) {
throw new Exception("ExludedName");
} else if (name.contains("FENCE_TOTAL")) {
throw new Exception("ExludedName");
} else if (name.contains("SYS_NUM_RESETS")) {
throw new Exception("ExludedName");
} else if (name.contains("ARSPD_OFFSET")) {
throw new Exception("ExludedName");
} else if (name.contains("GND_ABS_PRESS")) {
throw new Exception("ExludedName");
} else if (name.contains("GND_TEMP")) {
throw new Exception("ExludedName");
} else if (name.contains("CMD_INDEX")) {
throw new Exception("ExludedName");
} else if (name.contains("LOG_LASTFILE")) {
throw new Exception("ExludedName");
} else if (name.contains("FORMAT_VERSION")) {
throw new Exception("ExludedName");
}
}

public double[] parseRange() throws ParseException {
final DecimalFormat format = formatter;

Expand Down
4 changes: 2 additions & 2 deletions ClientLib/mobile/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apply plugin: 'com.android.library'

ext {
PUBLISH_ARTIFACT_ID = 'dronekit-android'
PUBLISH_VERSION = '2.3.03'
PUBLISH_VERSION = '2.3.04'
PROJECT_DESCRIPTION = "DroneKit-Android Client Library"
PROJECT_LABELS = ['3DR', '3DR Services', 'DroneAPI', 'Android', 'DroneKit']
PROJECT_LICENSES = ['Apache-2.0']
Expand All @@ -17,7 +17,7 @@ android {
defaultConfig {
minSdkVersion 14
targetSdkVersion 21
versionCode 20303
versionCode 20304
versionName PUBLISH_VERSION
}

Expand Down
Binary file modified ClientLib/mobile/libs/AidlLib.jar
Binary file not shown.

0 comments on commit 002a362

Please sign in to comment.