Skip to content

Commit

Permalink
Fix battery drain issue
Browse files Browse the repository at this point in the history
  • Loading branch information
CatcherITGF committed Dec 19, 2023
1 parent 56f0287 commit 7a1bdcf
Showing 1 changed file with 11 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -69,19 +69,18 @@ set-ini-val /atmosphere/config/system_settings.ini ntc autonomic_correction_fail
set-ini-val /atmosphere/config/system_settings.ini ntc autonomic_correction_immediate_try_count_max u32!0x0
set-ini-val /atmosphere/config/system_settings.ini ntc autonomic_correction_immediate_try_interval_milliseconds u32!0x7FFFFFFF

set-ini-val /atmosphere/config/system_settings.ini systemupdate bgnup_retry_seconds u32!0xFFFFFFFF
set-ini-val /atmosphere/config/system_settings.ini systemupdate bgnup_retry_seconds u32!0x7FFFFFFF

set-ini-val /atmosphere/config/system_settings.ini ns.rights skip_account_validation_on_rights_check u8!0x1
set-ini-val /atmosphere/config/system_settings.ini ns.rights next_available_time_of_unexpected_error u32!0xFFFFFFFF
set-ini-val /atmosphere/config/system_settings.ini ns.rights next_available_time_of_unexpected_error u32!0x7FFFFFFF

set-ini-val /atmosphere/config/system_settings.ini pctl intermittent_task_interval_seconds u32!0xFFFFFFFF
set-ini-val /atmosphere/config/system_settings.ini pctl intermittent_task_interval_seconds u32!0x7FFFFFFF

set-ini-val /atmosphere/config/system_settings.ini sprofile adjust_polling_interval_by_profile u8!0x0
set-ini-val /atmosphere/config/system_settings.ini sprofile polling_interval_sec_max u32!0xFFFFFFFF
set-ini-val /atmosphere/config/system_settings.ini sprofile polling_interval_sec_min u32!0xFFFFFFFF

[Reset]
set-ini-val /atmosphere/config/system_settings.ini sprofile polling_interval_sec_max u32!0x7FFFFFFF
set-ini-val /atmosphere/config/system_settings.ini sprofile polling_interval_sec_min u32!0x7FFFFFFF

[Turn On]
remove-ini-key /atmosphere/config/system_settings.ini bgtc enable_halfawake u32!0x0
remove-ini-key /atmosphere/config/system_settings.ini bgtc minimum_interval_normal u32!0x7FFFFFFF
remove-ini-key /atmosphere/config/system_settings.ini bgtc minimum_interval_save u32!0x7FFFFFFF
Expand Down Expand Up @@ -152,13 +151,13 @@ remove-ini-key /atmosphere/config/system_settings.ini ntc autonomic_correction_f
remove-ini-key /atmosphere/config/system_settings.ini ntc autonomic_correction_immediate_try_count_max u32!0x0
remove-ini-key /atmosphere/config/system_settings.ini ntc autonomic_correction_immediate_try_interval_milliseconds u32!0x7FFFFFFF

remove-ini-key /atmosphere/config/system_settings.ini systemupdate bgnup_retry_seconds u32!0xFFFFFFFF
remove-ini-key /atmosphere/config/system_settings.ini systemupdate bgnup_retry_seconds u32!0x7FFFFFFF

remove-ini-key /atmosphere/config/system_settings.ini ns.rights skip_account_validation_on_rights_check u8!0x1
remove-ini-key /atmosphere/config/system_settings.ini ns.rights next_available_time_of_unexpected_error u32!0xFFFFFFFF
remove-ini-key /atmosphere/config/system_settings.ini ns.rights next_available_time_of_unexpected_error u32!0x7FFFFFFF

remove-ini-key /atmosphere/config/system_settings.ini pctl intermittent_task_interval_seconds u32!0xFFFFFFFF
remove-ini-key /atmosphere/config/system_settings.ini pctl intermittent_task_interval_seconds u32!0x7FFFFFFF

remove-ini-key /atmosphere/config/system_settings.ini sprofile adjust_polling_interval_by_profile u8!0x0
remove-ini-key /atmosphere/config/system_settings.ini sprofile polling_interval_sec_max u32!0xFFFFFFFF
remove-ini-key /atmosphere/config/system_settings.ini sprofile polling_interval_sec_min u32!0xFFFFFFFF
remove-ini-key /atmosphere/config/system_settings.ini sprofile polling_interval_sec_max u32!0x7FFFFFFF
remove-ini-key /atmosphere/config/system_settings.ini sprofile polling_interval_sec_min u32!0x7FFFFFFF

0 comments on commit 7a1bdcf

Please sign in to comment.