From d7e6207708f2c976b7cbb3707e6a01d3e88083ab Mon Sep 17 00:00:00 2001 From: CTCaer Date: Wed, 11 Mar 2020 12:23:25 +0200 Subject: [PATCH] ts: Add temperature location comments Avert some confusion about the locations. HOS uses TMP451 IC's internal thermistor for PCB temp readings and external is connected to a thermistor to SoC's package temp pins, so SoC temp readings. --- nx/include/switch/services/ts.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nx/include/switch/services/ts.h b/nx/include/switch/services/ts.h index cc85b0c8..81ce554e 100644 --- a/nx/include/switch/services/ts.h +++ b/nx/include/switch/services/ts.h @@ -10,8 +10,8 @@ /// Location typedef enum { - TsLocation_Internal = 0, ///< Internal - TsLocation_External = 1, ///< External + TsLocation_Internal = 0, ///< TMP451 Internal: PCB + TsLocation_External = 1, ///< TMP451 External: SoC } TsLocation; /// Initialize ts.