Skip to content

Commit 30ac757

Browse files
authored
Merge pull request dji-sdk#69 from kenargo/master
Align RTK connection reporting status to be the same as DJI Cockpit
2 parents 6b6d6be + 01bfc40 commit 30ac757

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

android-uxsdk-beta-accessory/src/main/java/dji/ux/beta/accessory/widget/rtk/RTKSatelliteStatusWidgetModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ class RTKSatelliteStatusWidgetModel(djiSdkModel: DJISDKModel,
228228
if (rtkStateProcessor.value.isRTKBeingUsed) {
229229
rtkBaseStationStateProcessor.onNext(RTKBaseStationState.CONNECTED_IN_USE)
230230
} else {
231-
rtkBaseStationStateProcessor.onNext(RTKBaseStationState.CONNECTED_NOT_IN_USE)
231+
rtkBaseStationStateProcessor.onNext(RTKBaseStationState.DISCONNECTED)
232232
}
233233
} else {
234234
rtkBaseStationStateProcessor.onNext(RTKBaseStationState.DISCONNECTED)

0 commit comments

Comments
 (0)