We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73df5f1 commit c1b3895Copy full SHA for c1b3895
sys/analog_util/dac_util.c
@@ -27,7 +27,7 @@ uint16_t dac_util_map(int value, int min, int max)
27
return (uint16_t)(((value - min) * UINT16_MAX) / (max - min));
28
}
29
30
-/* only provide dac_util_mapf when floating point arithmetics is available */
+/* only provide dac_util_mapf when floating point arithmetic is available */
31
#if MODULE_FLOAT_MATH
32
uint16_t dac_util_mapf(float value, float min, float max)
33
{
0 commit comments