diff options
| -rw-r--r-- | core/res/res/values/config.xml | 3 | ||||
| -rw-r--r-- | core/res/res/values/symbols.xml | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/core/res/res/values/config.xml b/core/res/res/values/config.xml index be28449e6d56..9a2a6eb8ab42 100644 --- a/core/res/res/values/config.xml +++ b/core/res/res/values/config.xml @@ -443,6 +443,9 @@ <!-- Boolean indicating whether or not wifi firmware debugging is enabled --> <bool translatable="false" name="config_wifi_enable_wifi_firmware_debugging">true</bool> + <!-- Integer size limit, in KB, for a single WifiLogger ringbuffer --> + <integer translatable="false" name="config_wifi_logger_ring_buffer_size_limit_kb">32</integer> + <!-- Boolean indicating whether or not wifi should turn off when emergency call is made --> <bool translatable="false" name="config_wifi_turn_off_during_emergency_call">false</bool> diff --git a/core/res/res/values/symbols.xml b/core/res/res/values/symbols.xml index 786b3cc09482..11f42ecf2463 100644 --- a/core/res/res/values/symbols.xml +++ b/core/res/res/values/symbols.xml @@ -298,6 +298,7 @@ <java-symbol type="bool" name="config_wifi_enable_5GHz_preference" /> <java-symbol type="bool" name="config_wifi_revert_country_code_on_cellular_loss" /> <java-symbol type="bool" name="config_wifi_enable_wifi_firmware_debugging" /> + <java-symbol type="integer" name="config_wifi_logger_ring_buffer_size_limit_kb" /> <java-symbol type="bool" name="config_wifi_turn_off_during_emergency_call" /> <java-symbol type="bool" name="config_supportMicNearUltrasound" /> <java-symbol type="bool" name="config_supportSpeakerNearUltrasound" /> |