Gen 4 (Realtek RTL8722DM) Internal Temperature?

On the Borons, we can access the processor temperature with the following code:

	// Get die temperature in 0.25 degrees Celsius.  Takes 50 us to complete.
	int32_t temp;
	uint32_t res = sd_temp_get(&temp);
	if (res == NRF_SUCCESS) {
		chip_temp = (float)temp / 4;
		Serial.printf("\nchip_temp=%.1f\n", chip_temp);
	}

Do we have something similar with the Gen 4 devices, like the M-Series and P2?

I’ve searched the Realtek RTL8722DM datasheet but haven’t had any luck.

Thanks!

There is no internal temperature sensor on RTL872x MCUs.

Thanks, Rick!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.