We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In ANALOG_SYS log data, internal cpu temperature is always stored [255, 255] when TMA-1 is powered by 12V VIN input, causing 6553.5°C CPU temperature.
ANALOG_SYS
But when TMA-1 is powered by USB-C in ESP32 board, it is stored correctly.
The text was updated successfully, but these errors were encountered:
seems like problem of casting in internal temperature calculation at here
adc_sys_value[0] = (uint16_t)(((110.0 - 30) * (adc_sys_value[0] - TS_CAL1) / (TS_CAL2 - TS_CAL1) + 30) * 10);
Sorry, something went wrong.
No branches or pull requests
In
ANALOG_SYS
log data, internal cpu temperature is always stored [255, 255] when TMA-1 is powered by 12V VIN input, causing 6553.5°C CPU temperature.But when TMA-1 is powered by USB-C in ESP32 board, it is stored correctly.
The text was updated successfully, but these errors were encountered: