From f046c013e364061dfd444ccae2ebd727ffef3ebb Mon Sep 17 00:00:00 2001 From: David Forrest Date: Thu, 27 Feb 2014 03:57:33 -0500 Subject: [PATCH] sermesg.c: Add documentation tag for variable floating point. --- sermsg.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sermsg.c b/sermsg.c index f9d1bcd..43899ad 100644 --- a/sermsg.c +++ b/sermsg.c @@ -77,6 +77,7 @@ void serwrite_int32(int32_t v) { /** write decimal digits from a long unsigned int \param v number to send +\param fp number of decimal places to the right of the decimal point */ void serwrite_uint32_vf(uint32_t v, uint8_t fp) { uint8_t e, t; @@ -101,6 +102,7 @@ void serwrite_uint32_vf(uint32_t v, uint8_t fp) { /** write decimal digits from a long signed int \param v number to send +\param fp number of decimal places to the right of the decimal point */ void serwrite_int32_vf(int32_t v, uint8_t fp) { if (v < 0) {