Skip to content
Snippets Groups Projects
Unverified Commit 959e4491 authored by Martine Lenders's avatar Martine Lenders Committed by GitHub
Browse files

Merge pull request #9702 from maribu/phydat_fit

sys/phydat: New phydat_fit API
parents 466bc341 fe46cae0
No related branches found
No related tags found
No related merge requests found
...@@ -181,38 +181,34 @@ const char *phydat_unit_to_str(uint8_t unit); ...@@ -181,38 +181,34 @@ const char *phydat_unit_to_str(uint8_t unit);
char phydat_prefix_from_scale(int8_t scale); char phydat_prefix_from_scale(int8_t scale);
/** /**
* @brief Scale an integer value to fit into a @ref phydat_t * @brief Scale integer value(s) to fit into a @ref phydat_t
* *
* Insert @p value at position @p index in the given @p dat while rescaling all * Inserts the @p values in the given @p dat so that all @p dim values in
* numbers in @p dat->val so that @p value fits inside the limits of the data * @p values fit inside the limits of the data type,
* type, [@ref PHYDAT_MIN, @ref PHYDAT_MAX], and update the stored scale factor. * [@ref PHYDAT_MIN, @ref PHYDAT_MAX], and updates the stored scale factor.
* The result will be rounded towards zero (the standard C99 integer division * The value is rounded to the nearest integer if possible, otherwise away from
* behaviour). * zero. E.g. `0.5` and `0.6` are rounded to `1`, `0.4` and `-0.4` are rounded
* The final parameter @p prescale can be used to chain multiple calls to * to `0`, `-0.5` and `-0.6` are rounded to `-1`.
* this function in order to fit multidimensional values into the same phydat_t.
*
* The code example below shows how to chain multiple calls via the @p prescale parameter
* *
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ {.c} * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ {.c}
* long val0 = 100000; * int32_t values[] = { 100000, 2000000, 30000000 };
* long val1 = 2000000; * phydat_t dat = { .scale = 0 };
* long val2 = 30000000; * phydat_fit(&dat, values, 3);
* phydat_t dat;
* dat.scale = 0;
* phydat_fit(&dat, val0, 0, phydat_fit(&dat, val1, 1, phydat_fit(&dat, val2, 2, 0)));
* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
* *
* The prescale scaling is only applied to @p value, the existing values in * @note Unless compiled with `-DPHYDAT_FIT_TRADE_PRECISION_FOR_ROM=0`, this
* @p dat are only scaled if the prescaled @p value does not fit in phydat_t::val * function will scale the value `-32768`, even though it would fit into a
* @ref phydat_t. Statistically, this precision loss happens in 0.00153%
* of the calls. This optimization saves a bit more than 20 bytes.
* *
* @param[in, out] dat the value will be written into this data array * @pre The @ref phydat_t::scale member in @p dat was initialized by the
* @param[in] value value to rescale caller prior to calling this function.
* @param[in] index place the value at this position in the phydat_t::val array
* @param[in] prescale start by scaling the value by this exponent
* *
* @return scaling offset that was applied * @param[in, out] dat the value will be written into this data array
* @param[in] values value(s) to rescale
* @param[in] dim Number of elements in @p values
*/ */
uint8_t phydat_fit(phydat_t *dat, long value, unsigned int index, uint8_t prescale); void phydat_fit(phydat_t *dat, const int32_t *values, unsigned int dim);
#ifdef __cplusplus #ifdef __cplusplus
} }
......
/* /*
* Copyright (C) 2018 Eistec AB * Copyright (C) 2018 Eistec AB
* 2018 Otto-von-Guericke-Universität Magdeburg
* *
* This file is subject to the terms and conditions of the GNU Lesser * This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level * General Public License v2.1. See the file LICENSE in the top level
...@@ -14,6 +15,7 @@ ...@@ -14,6 +15,7 @@
* @brief Generic sensor/actuator data handling * @brief Generic sensor/actuator data handling
* *
* @author Joakim Nohlgård <joakim.nohlgard@eistec.se> * @author Joakim Nohlgård <joakim.nohlgard@eistec.se>
* @author Marian Buschsieweke <marian.buschsieweke@ovgu.de>
* *
* @} * @}
*/ */
...@@ -24,24 +26,95 @@ ...@@ -24,24 +26,95 @@
#define ENABLE_DEBUG 0 #define ENABLE_DEBUG 0
#include "debug.h" #include "debug.h"
uint8_t phydat_fit(phydat_t *dat, long value, unsigned int index, uint8_t prescale) #ifndef PHYDAT_FIT_TRADE_PRECISION_FOR_ROM
#define PHYDAT_FIT_TRADE_PRECISION_FOR_ROM 1
#endif
static const uint32_t lookup_table_positive[] = {
327674999,
32767499,
3276749,
327674,
32767,
};
#if !(PHYDAT_FIT_TRADE_PRECISION_FOR_ROM)
static const uint32_t lookup_table_negative[] = {
327684999,
32768499,
3276849,
327684,
32768,
};
#endif
static const uint32_t divisors[] = {
100000,
10000,
1000,
100,
10,
};
#define LOOKUP_LEN (sizeof(lookup_table_positive) / sizeof(int32_t))
void phydat_fit(phydat_t *dat, const int32_t *values, unsigned int dim)
{ {
assert(index < (sizeof(dat->val) / sizeof(dat->val[0]))); assert(dim <= (sizeof(dat->val) / sizeof(dat->val[0])));
uint8_t ret = prescale; uint32_t divisor = 0;
while (prescale > 0) { uint32_t max = 0;
value /= 10; const uint32_t *lookup = lookup_table_positive;
--prescale;
/* Get the value with the highest magnitude and the correct lookup table.
* If PHYDAT_FIT_TRADE_PRECISION_FOR_ROM is true, the same lookup table will
* be used for both positive and negative values. As result, -32768 will be
* considered as out of range and scaled down. So statistically in 0.00153%
* of the cases an unneeded scaling is performed, when
* PHYDAT_FIT_TRADE_PRECISION_FOR_ROM is true.
*/
for (unsigned int i = 0; i < dim; i++) {
if (values[i] > (int32_t)max) {
max = values[i];
#if !(PHYDAT_FIT_TRADE_PRECISION_FOR_ROM)
lookup = lookup_table_positive;
#endif
}
else if (-values[i] > (int32_t)max) {
max = -values[i];
#if !(PHYDAT_FIT_TRADE_PRECISION_FOR_ROM)
lookup = lookup_table_negative;
#endif
}
} }
int8_t scale_offset = 0;
while ((value > PHYDAT_MAX) || (value < PHYDAT_MIN)) { for (unsigned int i = 0; i < LOOKUP_LEN; i++) {
value /= 10; if (max > lookup[i]) {
for (unsigned int k = 0; k < (sizeof(dat->val) / sizeof(dat->val[0])); ++k) { divisor = divisors[i];
dat->val[k] /= 10; dat->scale += 5 - i;
break;
}
}
if (!divisor) {
/* No rescaling required */
for (unsigned int i = 0; i < dim; i++) {
dat->val[i] = values[i];
}
return;
}
/* Applying scale and add half of the divisor for correct rounding */
uint32_t divisor_half = divisor >> 1;
for (unsigned int i = 0; i < dim; i++) {
if (values[i] >= 0) {
dat->val[i] = (uint32_t)(values[i] + divisor_half) / divisor;
}
else {
/* For negative integers the C standards seems to lack information
* on whether to round down or towards zero. So using positive
* integer division as last resort here.
*/
dat->val[i] = -((uint32_t)((-values[i]) + divisor_half) / divisor);
} }
++scale_offset;
} }
dat->val[index] = value;
dat->scale += scale_offset;
ret += scale_offset;
return ret;
} }
/* /*
* Copyright (C) 2018 Eistec AB * Copyright (C) 2018 Eistec AB
* 2018 Otto-von-Guericke-Universität Magdeburg
* *
* This file is subject to the terms and conditions of the GNU Lesser * This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level * General Public License v2.1. See the file LICENSE in the top level
...@@ -14,46 +15,103 @@ ...@@ -14,46 +15,103 @@
#define ENABLE_DEBUG (0) #define ENABLE_DEBUG (0)
#include "debug.h" #include "debug.h"
/* Default is smaller implementation */
#ifndef PHYDAT_FIT_TRADE_PRECISION_FOR_ROM
#define PHYDAT_FIT_TRADE_PRECISION_FOR_ROM 1
#endif
static void test_phydat_fit(void) static void test_phydat_fit(void)
{ {
/* verify that these big numbers are scaled to fit in phydat_t::val which is int16_t */ /* Input values for each test: */
long val0 = 100445; static const int32_t values[][3] = {
long val1 = 2000954; { 100445, -1, -1 },
long val2 = 30000455; { -5, 2000954, 3 },
long val4 = 1234567; { 30000449, -30000450, 30000500 },
phydat_t dat; { -30000449, -30000499, -30000500 },
dat.scale = -6; { 0, 0, 1234567 },
dat.unit = UNIT_V; { 32768, 32768, 32768 },
uint8_t res = phydat_fit(&dat, val0, 0, 0); { 32767, 32767, 32767 },
/* Check that the result was rescaled to 10044e-5 */ { 32766, 32766, 32766 },
/* The scaled number is rounded toward zero */ { -32769, -32769, -32769 },
TEST_ASSERT_EQUAL_INT(1, res); { -32768, -32768, -32768 },
TEST_ASSERT_EQUAL_INT(UNIT_V, dat.unit); { -32767, -32767, -32767 },
TEST_ASSERT_EQUAL_INT(-5, dat.scale); { -32766, -32766, -32766 },
TEST_ASSERT_EQUAL_INT( 10044, dat.val[0]); };
/* Fit the next value in the phydat vector */ static const int8_t scales[] = {
res = phydat_fit(&dat, val1, 1, res); -6,
TEST_ASSERT_EQUAL_INT(2, res); 42,
TEST_ASSERT_EQUAL_INT(UNIT_V, dat.unit); 0,
TEST_ASSERT_EQUAL_INT(-4, dat.scale); -1,
TEST_ASSERT_EQUAL_INT( 1004, dat.val[0]); 5,
TEST_ASSERT_EQUAL_INT( 20009, dat.val[1]); 0,
/* Fit the third value in the phydat vector */ 0,
res = phydat_fit(&dat, val2, 2, res); 0,
TEST_ASSERT_EQUAL_INT(3, res); 0,
TEST_ASSERT_EQUAL_INT(UNIT_V, dat.unit); 0,
TEST_ASSERT_EQUAL_INT(-3, dat.scale); 0,
TEST_ASSERT_EQUAL_INT( 100, dat.val[0]); 0,
TEST_ASSERT_EQUAL_INT( 2000, dat.val[1]); };
TEST_ASSERT_EQUAL_INT( 30000, dat.val[2]); static const unsigned int dims[] = {
/* Overwrite the second value in the phydat vector */ 1,
res = phydat_fit(&dat, val4, 1, res); 2,
TEST_ASSERT_EQUAL_INT(3, res); 3,
TEST_ASSERT_EQUAL_INT(UNIT_V, dat.unit); 3,
TEST_ASSERT_EQUAL_INT(-3, dat.scale); 3,
TEST_ASSERT_EQUAL_INT( 100, dat.val[0]); 3,
TEST_ASSERT_EQUAL_INT( 1234, dat.val[1]); 3,
TEST_ASSERT_EQUAL_INT( 30000, dat.val[2]); 3,
3,
3,
3,
3,
};
static const uint8_t units[] = {
UNIT_V,
UNIT_A,
UNIT_NONE,
UNIT_LUX,
UNIT_M,
UNIT_NONE,
UNIT_NONE,
UNIT_NONE,
UNIT_NONE,
UNIT_NONE,
UNIT_NONE,
UNIT_NONE,
};
/* Expected output values for each test: */
static const phydat_t expected[] = {
{ .val = { 10045, -1, -1 }, .unit = UNIT_V, .scale = -5 },
{ .val = { 0, 20010, -1 }, .unit = UNIT_A, .scale = 44 },
{ .val = { 30000, -30000, 30001 }, .unit = UNIT_NONE, .scale = 3 },
{ .val = { -30000, -30000, -30001 }, .unit = UNIT_LUX, .scale = 2 },
{ .val = { 0, 0, 12346 }, .unit = UNIT_M, .scale = 7 },
{ .val = { 3277, 3277, 3277 }, .unit = UNIT_NONE, .scale = 1 },
{ .val = { 32767, 32767, 32767 }, .unit = UNIT_NONE, .scale = 0 },
{ .val = { 32766, 32766, 32766 }, .unit = UNIT_NONE, .scale = 0 },
{ .val = { -3277, -3277, -3277 }, .unit = UNIT_NONE, .scale = 1 },
#if PHYDAT_FIT_TRADE_PRECISION_FOR_ROM
{ .val = { -3277, -3277, -3277 }, .unit = UNIT_NONE, .scale = 1 },
#else
{ .val = { -32768, -32768, -32768 }, .unit = UNIT_NONE, .scale = 0 },
#endif
{ .val = { -32767, -32767, -32767 }, .unit = UNIT_NONE, .scale = 0 },
{ .val = { -32766, -32766, -32766 }, .unit = UNIT_NONE, .scale = 0 },
};
for (unsigned int i = 0; i < sizeof(dims) / sizeof(dims[0]); i++) {
phydat_t dat = {
.val = { -1, -1, -1 },
.scale = scales[i],
.unit = units[i]
};
phydat_fit(&dat, values[i], dims[i]);
TEST_ASSERT_EQUAL_INT(expected[i].val[0], dat.val[0]);
TEST_ASSERT_EQUAL_INT(expected[i].val[1], dat.val[1]);
TEST_ASSERT_EQUAL_INT(expected[i].val[2], dat.val[2]);
TEST_ASSERT_EQUAL_INT(expected[i].scale, dat.scale);
TEST_ASSERT_EQUAL_INT(expected[i].unit, dat.unit);
}
} }
Test *tests_phydat_tests(void) Test *tests_phydat_tests(void)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment