mirror of
https://github.com/switchbrew/libnx.git
synced 2025-06-21 12:32:40 +02:00
49 lines
1.2 KiB
C
49 lines
1.2 KiB
C
#define NX_SERVICE_ASSUME_NON_DOMAIN
|
|
#include <string.h>
|
|
#include "service_guard.h"
|
|
#include "runtime/hosversion.h"
|
|
#include "services/ts.h"
|
|
|
|
static Service g_tsSrv;
|
|
|
|
NX_GENERATE_SERVICE_GUARD(ts);
|
|
|
|
Result _tsInitialize(void) {
|
|
return smGetService(&g_tsSrv, "ts");
|
|
}
|
|
|
|
void _tsCleanup(void) {
|
|
serviceClose(&g_tsSrv);
|
|
}
|
|
|
|
Service* tsGetServiceSession(void) {
|
|
return &g_tsSrv;
|
|
}
|
|
|
|
static Result _tsCmdInU8Out32(u8 inval, u32 *out, u64 cmd_id) {
|
|
return serviceDispatchInOut(&g_tsSrv, cmd_id, inval, *out);
|
|
}
|
|
|
|
Result tsGetTemperatureRange(TsLocation location, s32 *min_temperature, s32 *max_temperature) {
|
|
u8 tmp_location = location;
|
|
|
|
struct {
|
|
s32 min_temperature;
|
|
s32 max_temperature;
|
|
} out;
|
|
|
|
Result rc = serviceDispatchInOut(&g_tsSrv, 0, tmp_location, out);
|
|
if (R_SUCCEEDED(rc) && min_temperature) *min_temperature = out.min_temperature;
|
|
if (R_SUCCEEDED(rc) && max_temperature) *max_temperature = out.max_temperature;
|
|
return rc;
|
|
}
|
|
|
|
Result tsGetTemperature(TsLocation location, s32 *temperature) {
|
|
return _tsCmdInU8Out32(location, (u32*)temperature, 1);
|
|
}
|
|
|
|
Result tsGetTemperatureMilliC(TsLocation location, s32 *temperature) {
|
|
return _tsCmdInU8Out32(location, (u32*)temperature, 3);
|
|
}
|
|
|