16 lines
210 B
C
16 lines
210 B
C
#include "../common/common.h"
|
|
|
|
bool thermalstatusInit(void) {
|
|
return false;
|
|
}
|
|
|
|
void thermalstatusExit(void) {
|
|
|
|
}
|
|
|
|
bool thermalstatusGetDetails(s32 *temperature) {
|
|
*temperature = 0;
|
|
return false;
|
|
}
|
|
|