Skip to content

Commit c1b3895

Browse files
maribucrasbe
andauthored
Update sys/analog_util/dac_util.c
Co-authored-by: crasbe <[email protected]>
1 parent 73df5f1 commit c1b3895

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sys/analog_util/dac_util.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ uint16_t dac_util_map(int value, int min, int max)
2727
return (uint16_t)(((value - min) * UINT16_MAX) / (max - min));
2828
}
2929

30-
/* only provide dac_util_mapf when floating point arithmetics is available */
30+
/* only provide dac_util_mapf when floating point arithmetic is available */
3131
#if MODULE_FLOAT_MATH
3232
uint16_t dac_util_mapf(float value, float min, float max)
3333
{

0 commit comments

Comments
 (0)