>> * to 1/1000 degree Celsius. >> */ >> - *temp = temp_res * 1000 / 256; >> + *temp = (temp_res & 0xFFFF) * 1000 / 256; > > Perhaps while the extra space before '*' could be dropped at the same time.
Hi Simon, thanks for noticing this. Will do. Regards Igor
