From 05961615f66f0fd63a9d8da21e890f3c80997711 Mon Sep 17 00:00:00 2001 From: Luigi Zevola Date: Fri, 23 Jun 2023 21:14:48 +0000 Subject: [PATCH] Dumpstate: add AoC Monitor Mode status Add AoC Monitor Mode status to bug reports. Bug: 288616032 Test: On device Change-Id: Iced980bd76c2cc99ae20a67add9179e307f0e73c Signed-off-by: Luigi Zevola --- aoc/dump_aoc.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/aoc/dump_aoc.cpp b/aoc/dump_aoc.cpp index 393d1e7..8d5278d 100644 --- a/aoc/dump_aoc.cpp +++ b/aoc/dump_aoc.cpp @@ -37,5 +37,6 @@ int main() { runCommand("AoC Heap Stats (HF0)", "echo 'dbg heap -c 3' > /dev/acd-debug; timeout 0.1 cat /dev/acd-debug"); runCommand("AoC Heap Stats (HF1)", "echo 'dbg heap -c 4' > /dev/acd-debug; timeout 0.1 cat /dev/acd-debug"); runCommand("AoC DVFS (FF1)", "echo 'dbg info -c 2 DVFSFF1' > /dev/acd-debug; timeout 0.1 cat /dev/acd-debug"); + runCommand("AoC Monitor Mode Status", "echo 'monitor_mode status' > /dev/acd-debug; timeout 0.1 cat /dev/acd-debug"); return 0; }