sermesg.c: Add documentation tag for variable floating point.

This commit is contained in:
David Forrest 2014-02-27 03:57:33 -05:00 committed by Markus Hitter
parent e7707ea275
commit f046c013e3
1 changed files with 2 additions and 0 deletions

View File

@ -77,6 +77,7 @@ void serwrite_int32(int32_t v) {
/** write decimal digits from a long unsigned int /** write decimal digits from a long unsigned int
\param v number to send \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) { void serwrite_uint32_vf(uint32_t v, uint8_t fp) {
uint8_t e, t; 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 /** write decimal digits from a long signed int
\param v number to send \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) { void serwrite_int32_vf(int32_t v, uint8_t fp) {
if (v < 0) { if (v < 0) {