sermesg.c: Add documentation tag for variable floating point.
This commit is contained in:
parent
e7707ea275
commit
f046c013e3
2
sermsg.c
2
sermsg.c
|
|
@ -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) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue