Skip to content

Commit

Permalink
Disable TX igate
Browse files Browse the repository at this point in the history
  • Loading branch information
sh123 committed Jun 29, 2023
1 parent a80af0f commit 32d6b92
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions codec2talkie/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ android {
applicationId "com.radio.codec2talkie"
minSdkVersion 23
targetSdkVersion 30
versionCode 156
versionName "1.56"
versionCode 157
versionName "1.57"

testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void initialize(Transport transport, Context context, ProtocolCallback pr

SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(context);
_isRxGateEnabled = sharedPreferences.getBoolean(PreferenceKeys.APRS_IS_ENABLE_RX_GATE, false);
_isTxGateEnabled = sharedPreferences.getBoolean(PreferenceKeys.APRS_IS_ENABLE_TX_GATE, false);
_isTxGateEnabled = false; // sharedPreferences.getBoolean(PreferenceKeys.APRS_IS_ENABLE_TX_GATE, false);
_isSelfEnabled = sharedPreferences.getBoolean(PreferenceKeys.APRS_IS_ENABLE_SELF, false);
_callsign = sharedPreferences.getString(PreferenceKeys.AX25_CALLSIGN, "N0CALL");
_ssid = sharedPreferences.getString(PreferenceKeys.AX25_SSID, "0");
Expand Down
1 change: 1 addition & 0 deletions codec2talkie/src/main/res/xml/preferences_aprs_is.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@

<SwitchPreference
app:key="aprs_is_enable_tx_gate"
app:enabled="false"
app:title="@string/aprs_is_enable_tx_gate_title"
app:summary="@string/aprs_is_enable_tx_gate_summary"
app:defaultValue="false">
Expand Down

0 comments on commit 32d6b92

Please sign in to comment.