You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On a MacBookPro11,1 the WIRELESS_MODULE (TW0P) temperature sensor reports 129°C (max temperature) constantly (right from boot with Wi-Fi off). Seems to be an issue in software, not hardware. The Apple Hardware Test (AHT) reports that everything is fine. Tested on a few machines of the same model in the Apple store, same results, other models do not seem to have this problem. Wi-Fi works fine. For now, commenting out the sensor to prevent confusion, not worth putting in the logic to check for model number.
Here's a sample of temperature readings. The sensors value is completely disproportionate to the rest. The SMC doesn't report any errors and the system is not under any load, nor is Wi-Fi on. The value is constant, does not fluctuate at all. Of course, TW0P may not actually correspond to the wireless module (AirPort card).
$ uname -a
Darwin beltex.local 14.1.0 Darwin Kernel Version 14.1.0: Mon Dec 22 23:10:38 PST 2014; root:xnu-2782.10.72~2/RELEASE_X86_64 x86_64
So my guess is that the SMC either misreads the temperature sensor or mishandles it somehow for this specific hardware. AHT probably reads it in a different manner. Don't believe its anything on the SMCKit side, it's simply the raw data returned from the SMC itself. If you see the same or different behaviour, do chime in! :)
As a side note, HEATSINK_0 (Th0H) on a MacBookPro5,1 reports 0°C constantly (though only checked on a single machine), so this sort of thing is not entirely uncommon.
The text was updated successfully, but these errors were encountered:
Think this addresses #15. So it's now -1 degree Celsius. My theory on this is
that certain sensors at lower temperatures have inaccurate readings. Maybe there
located close to an internal fan, and the airflow is causing it to be skewed? In
any case, this at least lets us feel good that the machine is not in danger of
over heating.
#15
Realized, the sign bit wasn't being handled, so this would be -1°C! :) (fixed via 12215f2) Came across a few other sensors that do this as well. My theory on this is that certain sensors at lower temperatures have inaccurate readings. Maybe there located close to an internal fan, and the airflow is causing it to be skewed? In any case, this at least lets us feel good that the machine is not in danger.
On a
MacBookPro11,1
theWIRELESS_MODULE
(TW0P
) temperature sensor reports 129°C (max temperature) constantly (right from boot with Wi-Fi off). Seems to be an issue in software, not hardware. The Apple Hardware Test (AHT) reports that everything is fine. Tested on a few machines of the same model in the Apple store, same results, other models do not seem to have this problem. Wi-Fi works fine. For now, commenting out the sensor to prevent confusion, not worth putting in the logic to check for model number.Here's a sample of temperature readings. The sensors value is completely disproportionate to the rest. The SMC doesn't report any errors and the system is not under any load, nor is Wi-Fi on. The value is constant, does not fluctuate at all. Of course,
TW0P
may not actually correspond to the wireless module (AirPort card).SMC version is
2.16f68
$ uname -a Darwin beltex.local 14.1.0 Darwin Kernel Version 14.1.0: Mon Dec 22 23:10:38 PST 2014; root:xnu-2782.10.72~2/RELEASE_X86_64 x86_64
So my guess is that the SMC either misreads the temperature sensor or mishandles it somehow for this specific hardware. AHT probably reads it in a different manner. Don't believe its anything on the SMCKit side, it's simply the raw data returned from the SMC itself. If you see the same or different behaviour, do chime in! :)
As a side note,
HEATSINK_0
(Th0H
) on aMacBookPro5,1
reports 0°C constantly (though only checked on a single machine), so this sort of thing is not entirely uncommon.The text was updated successfully, but these errors were encountered: