mirror of
https://github.com/thelsing/knx.git
synced 2024-12-18 19:08:18 +01:00
commit
15bf1c0a9d
@ -1753,6 +1753,12 @@ void float16ToPayload(uint8_t* payload, size_t payload_length, int index, double
|
|||||||
exponent = ceil(log2(value) - 11.0);
|
exponent = ceil(log2(value) - 11.0);
|
||||||
|
|
||||||
short mantissa = roundf(value / (1 << exponent));
|
short mantissa = roundf(value / (1 << exponent));
|
||||||
|
// above calculation causes mantissa overflow for values of the form 2^n, where n>11
|
||||||
|
if (mantissa >= 0x800)
|
||||||
|
{
|
||||||
|
exponent++;
|
||||||
|
mantissa = roundf(value / (1 << exponent));
|
||||||
|
}
|
||||||
|
|
||||||
if (wasNegative)
|
if (wasNegative)
|
||||||
mantissa *= -1;
|
mantissa *= -1;
|
||||||
|
Loading…
Reference in New Issue
Block a user