#include "asuro.h"
gehe zum Quellcode dieser Datei
Funktionen | |
void | PrintFloat (float wert, char vorkomma, char nachkomma) |
Ausgabe eines Float Wertes als String ueber die serielle Schnittstelle. |
Definiert in Datei printf.c.
void PrintFloat | ( | float | wert, | |
char | vorkomma, | |||
char | nachkomma | |||
) |
Ausgabe eines Float Wertes als String ueber die serielle Schnittstelle.
[in] | wert | Auszugebender Float Wert (32Bit) |
SerPrint ("\r\n"); PrintFloat (123.4567, 3, 4); SerPrint ("\r\n"); SerPrint ("\r\n"); PrintFloat (-123.4567, 5, 2); SerPrint ("\r\n"); SerPrint ("\r\n"); PrintFloat (-1.234567, 1, 6); SerPrint ("\r\n"); SerPrint ("\r\n"); PrintFloat (1.234567, 1, 3); SerPrint ("\r\n");
Definiert in Zeile 48 der Datei printf.c.
00050 { 00051 char text [10]; 00052 00053 dtostrf(wert, vorkomma, nachkomma, text); 00054 SerPrint (text); 00055 }