printf.c

gehe zur Dokumentation dieser Datei
00001 /****************************************************************************/
00012 #include "asuro.h"
00013 
00014 /****************************************************************************/
00048 void PrintFloat (float wert, char vorkomma, char nachkomma)
00049 // vorkomma + nachkomma max 7
00050 {
00051   char text [10];                                       
00052 
00053   dtostrf(wert, vorkomma, nachkomma, text);
00054   SerPrint (text);
00055 }
00056 

Erzeugt am Sun Nov 18 18:24:52 2007 für ASURO Library von  doxygen 1.5.1-p1