4

Is there a overheating protection circuit integrated into the Raspberry Pi like in desktop processors from Intel or AMD? When I did research about this question I just found vendor specification about operating temperatures ranges. How does a Raspberry Pi deal with high temperature?

I've tried it out. I measured the external temperature and monitored also the temperature provided by the sensor in the AP. I run a benchmark with the same result on room temperature and when I heated the PI up with hot air to 70°.

enter image description here

Robin
  • 143
  • 1
  • 5
  • see also https://raspberrypi.stackexchange.com/questions/103/whats-the-maximum-minimum-running-temperature? and https://raspberrypi.stackexchange.com/questions/79510/is-high-temperature-handled-by-hardware-or-software? – Jonas Stein Jan 02 '19 at 14:30

1 Answers1

5

Yes, as the temperature rises the CPU frequency is lowered to prevent damage. The throttling begins around 82 degree Celsius. You can check the CPU Frequency with the following command:

cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq 

or using the GUI widget.

The following links provide additional info and benchmarks:

http://www.sbeddoes.com/blog/2016/3/7/yia8uhjlb9hoau76a38jc21z3blp1e http://makezine.com/2016/03/02/raspberry-pi-3-not-halt-catch-fire/

Steve Robillard
  • 34,687
  • 17
  • 103
  • 109
  • Where can I find this information? What is the stepping? – Robin May 22 '16 at 14:22
  • I've updated the question. – Robin May 22 '16 at 14:25
  • Very interesting. That might explain why the RDP terminal became so slow before it totally stopped when mine overheated in that black plastic "official" case. It had no vents, and when I took off the top and touched the heat sink it burned my finger. – SDsolar Dec 01 '16 at 04:33