From 9b4667b9cf74125b448934eb9eb350dfd10dc63e Mon Sep 17 00:00:00 2001 From: BitesPotatoBacks <83843298+BitesPotatoBacks@users.noreply.github.com> Date: Mon, 27 Mar 2023 16:19:01 -0700 Subject: [PATCH] Oops, almost forgot to update --all-metrics --- SocPowerBuddy/socpwrbud.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SocPowerBuddy/socpwrbud.m b/SocPowerBuddy/socpwrbud.m index 775dc22..491e682 100644 --- a/SocPowerBuddy/socpwrbud.m +++ b/SocPowerBuddy/socpwrbud.m @@ -203,6 +203,8 @@ int main(int argc, char * argv[]) [NSString stringWithUTF8String: METRIC_IDLE], [NSString stringWithUTF8String: METRIC_DVFM], [NSString stringWithUTF8String: METRIC_DVFMMS], + [NSString stringWithUTF8String: METRIC_DVFMVOLTS], + [NSString stringWithUTF8String: METRIC_VOLTS], [NSString stringWithUTF8String: METRIC_POWER], [NSString stringWithUTF8String: METRIC_INSTRCTS], [NSString stringWithUTF8String: METRIC_FREQ], @@ -233,10 +235,12 @@ int main(int argc, char * argv[]) continue; } if ([cmd.metrics[i] isEqual:[NSString stringWithUTF8String:METRIC_DVFMMS]]) { + bd.dvfm = true; bd.dvfm_ms = true; continue; } if ([cmd.metrics[i] isEqual:[NSString stringWithUTF8String:METRIC_DVFMVOLTS]]) { + bd.dvfm = true; bd.dvfm_volts = true; continue; }