Part Number: TMS320F28377S
Hi Champion,
I find in datasheet that F28377S internal temperature sensor accuracy in datasheet is 15 deg, but in example:
if(DevCfgRegs.REVID >= 3)
{
//
//for production devices (Rev. C), pull the slope and offset from OTP
//
tempSensor_tempSlope = (int32)getTempSlope();
tempSensor_tempOffset = getTempOffset();
}
else
{
//
//for pre-production devices, use these static values for slope
//and offset
//
tempSensor_tempSlope = 5196;
tempSensor_tempOffset = 1788;
}
Seems we have calibration data in OTP, so what is the accuracy after calibrate? Do we have other way to make it more accuracy?
Thanks!
BR
Joe