I have a Raspberry Pi (3B+) in a setup, where during boot process may a small undervoltage occur (under certain conditions). However, I found out, that it never leaves the "throttled" state after.
dmesg shows usually one set of lines like
[ 99.990070] Under-voltage detected! (0x00050005)
[ 108.309618] Voltage normalised (0x00000000)
However, the throttled flag throttled=0x50000
remains there. I tested the voltage on both 5V pins and 3.3V pins with a good voltmeter and then even oscilloscope and the voltage is perfect and steady without oscillations .
Is there any way how to tell it "You are good" besides rebooting which is not an option for me?
throttled=0x50000
, the word throttled is past tense. In other words,throttled=0x50000
means the undervoltage event has come and gone - the event that triggered the dmesg entry no longer exists. – Seamus Oct 21 '22 at 08:42