vcgencmd get_throttled returns 0xd0000 and 0x50000
Hi! I've ran the vcgencmd get_throttled and it retuned 0x50000 durring an system update and 0xd0000 while standing by and after i've restarted the pi with no app open it returned 0x0.But i don't understand what this hex numbers means
Re: vcgencmd get_throttled returns 0xd0000 and 0x50000
#### get_throttled
Returns the throttled state of the system. This is a bit pattern.
| Bit | Meaning |
|:---:|---------|
| 0 | Under-voltage detected |
| 1 | Arm frequency capped |
| 2 | Currently throttled |
| 3 | Soft temperature limit active |
| 16 | Under-voltage has occurred |
| 17 | Arm frequency capped has occurred |
| 18 | Throttling has occurred |
| 19 | Soft temperature limit has occurred
Returns the throttled state of the system. This is a bit pattern.
| Bit | Meaning |
|:---:|---------|
| 0 | Under-voltage detected |
| 1 | Arm frequency capped |
| 2 | Currently throttled |
| 3 | Soft temperature limit active |
| 16 | Under-voltage has occurred |
| 17 | Arm frequency capped has occurred |
| 18 | Throttling has occurred |
| 19 | Soft temperature limit has occurred
Principal Software Engineer at Raspberry Pi (Trading) Ltd.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
Re: vcgencmd get_throttled returns 0xd0000 and 0x50000
to get to this bits i need to convert the hex to binary?jamesh wrote: ↑Fri May 10, 2019 6:10 pm#### get_throttled
Returns the throttled state of the system. This is a bit pattern.
| Bit | Meaning |
|:---:|---------|
| 0 | Under-voltage detected |
| 1 | Arm frequency capped |
| 2 | Currently throttled |
| 3 | Soft temperature limit active |
| 16 | Under-voltage has occurred |
| 17 | Arm frequency capped has occurred |
| 18 | Throttling has occurred |
| 19 | Soft temperature limit has occurred
Re: vcgencmd get_throttled returns 0xd0000 and 0x50000
Yes.
Principal Software Engineer at Raspberry Pi (Trading) Ltd.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
Contrary to popular belief, humorous signatures are allowed.
I've been saying "Mucho" to my Spanish friend a lot more lately. It means a lot to him.
-
- Posts: 14609
- Joined: Fri Mar 09, 2012 7:36 pm
- Location: Vallejo, CA (US)
Re: vcgencmd get_throttled returns 0xd0000 and 0x50000
For the values you're seeing, just the first hex character.H0R4T1U wrote: ↑Fri May 10, 2019 6:12 pmto get to this bits i need to convert the hex to binary?jamesh wrote: ↑Fri May 10, 2019 6:10 pm#### get_throttled
Returns the throttled state of the system. This is a bit pattern.
| Bit | Meaning |
|:---:|---------|
| 0 | Under-voltage detected |
| 1 | Arm frequency capped |
| 2 | Currently throttled |
| 3 | Soft temperature limit active |
| 16 | Under-voltage has occurred |
| 17 | Arm frequency capped has occurred |
| 18 | Throttling has occurred |
| 19 | Soft temperature limit has occurred
Re: vcgencmd get_throttled returns 0xd0000 and 0x50000
soo for 0x0 or 0x50000 it means im under voltage?W. H. Heydt wrote: ↑Fri May 10, 2019 6:16 pmFor the values you're seeing, just the first hex character.H0R4T1U wrote: ↑Fri May 10, 2019 6:12 pmto get to this bits i need to convert the hex to binary?jamesh wrote: ↑Fri May 10, 2019 6:10 pm#### get_throttled
Returns the throttled state of the system. This is a bit pattern.
| Bit | Meaning |
|:---:|---------|
| 0 | Under-voltage detected |
| 1 | Arm frequency capped |
| 2 | Currently throttled |
| 3 | Soft temperature limit active |
| 16 | Under-voltage has occurred |
| 17 | Arm frequency capped has occurred |
| 18 | Throttling has occurred |
| 19 | Soft temperature limit has occurred
-
- Posts: 14609
- Joined: Fri Mar 09, 2012 7:36 pm
- Location: Vallejo, CA (US)
Re: vcgencmd get_throttled returns 0xd0000 and 0x50000
Not for 0x0. No bits are set there. for 0x5... the bits 19-16 are 0101, so throttling has occurred (bit 18) and undervolt has occurred (bit 16).
Re: vcgencmd get_throttled returns 0xd0000 and 0x50000
This may help clarify:
Hex 5 0 0 0 0
Binary 0101 0000 0000 0000 0000
Bit#---- 1111 1111 1100 0000 0000
----------- 9876 5432 1098 7654 3210
-------------------^--- Bit 16 is on - Been under voltage (at least once)
---------------^------- Bit 18 is on - Been throttled (at least once)
(Note: since bits 0-3 are zero, the Pi is not currently UV or throttled).
Hex D 0 0 0 0
Binary 1101 0000 0000 0000 0000
Bit#---- 1111 1111 1100 0000 0000
---------- 9876 5432 1098 7654 3210
------------------^----- Bit 16 is on - Been under voltage (at least once)
--------------^--------- Bit 18 is on - Been throttled (at least once)
-------------^---------- Bit 19 is on - Soft temperature limit has occurred (at lest once)
Note: since bits 0-3 are zero, the Pi is not currently UV or throttled).
Edit: Formatting didn't come through as planned, but should be good enough to get the idea.
Hex 5 0 0 0 0
Binary 0101 0000 0000 0000 0000
Bit#---- 1111 1111 1100 0000 0000
----------- 9876 5432 1098 7654 3210
-------------------^--- Bit 16 is on - Been under voltage (at least once)
---------------^------- Bit 18 is on - Been throttled (at least once)
(Note: since bits 0-3 are zero, the Pi is not currently UV or throttled).
Hex D 0 0 0 0
Binary 1101 0000 0000 0000 0000
Bit#---- 1111 1111 1100 0000 0000
---------- 9876 5432 1098 7654 3210
------------------^----- Bit 16 is on - Been under voltage (at least once)
--------------^--------- Bit 18 is on - Been throttled (at least once)
-------------^---------- Bit 19 is on - Soft temperature limit has occurred (at lest once)
Note: since bits 0-3 are zero, the Pi is not currently UV or throttled).
Edit: Formatting didn't come through as planned, but should be good enough to get the idea.
Last edited by lpsw on Fri May 10, 2019 7:51 pm, edited 2 times in total.
Self-education is, I firmly believe, the only kind of education there is - Isaac Asimov
-
- Posts: 14609
- Joined: Fri Mar 09, 2012 7:36 pm
- Location: Vallejo, CA (US)
Re: vcgencmd get_throttled returns 0xd0000 and 0x50000
This may help clarify: (reformatted with Code tags)
Code: Select all
Hex 5 0 0 0 0
Binary 0101 0000 0000 0000 0000
Bit# 1111 1111 1100 0000 0000
9876 5432 1098 7654 3210
^ -- Bit 16 is on - Been under voltage (at least once)
^ ----- Bit 18 is on - Been throttled (at least once)
(Note: since bits 0-3 are zero, the Pi is not currently UV or throttled).
Code: Select all
Hex D 0 0 0 0
Binary 1101 0000 0000 0000 0000
Bit# 1111 1111 1100 0000 0000
9876 5432 1098 7654 3210
^ -- Bit 16 is on - Been under voltage (at least once)
^ ----- Bit 18 is on - Been throttled (at least once)
^ -------- Bit 19 is on - Soft temperature limit has occurred (at lest once)
Note: since bits 0-3 are zero, the Pi is not currently UV or throttled).
Last edited by B.Goode on Fri May 10, 2019 7:53 pm, edited 1 time in total.
Re: vcgencmd get_throttled returns 0xd0000 and 0x50000
Tried code tagsfirst, no help. Spaces were still removed.
I expected code tags to honor (honour
) indentation.
Edit: Thanks B.Goode. I copied and pasted from a document to between the code tags...hmm
I expected code tags to honor (honour

Edit: Thanks B.Goode. I copied and pasted from a document to between the code tags...hmm
Last edited by lpsw on Fri May 10, 2019 7:56 pm, edited 1 time in total.
Self-education is, I firmly believe, the only kind of education there is - Isaac Asimov
Re: vcgencmd get_throttled returns 0xd0000 and 0x50000
Was that in preview? Preview lives in a world of its own and can mess bits up depending on the way the wind blows (just try inline images for fun - not)...
Re: vcgencmd get_throttled returns 0xd0000 and 0x50000
Andyroo,
I believe I was in preview mode.
I believe I was in preview mode.
Self-education is, I firmly believe, the only kind of education there is - Isaac Asimov