Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ANSI-C-like fprintf(), fscanf() #60

Open
shiftleftplusone opened this issue Jun 21, 2015 · 2 comments
Open

ANSI-C-like fprintf(), fscanf() #60

shiftleftplusone opened this issue Jun 21, 2015 · 2 comments
Assignees

Comments

@shiftleftplusone
Copy link

shiftleftplusone commented Jun 21, 2015

Urgently needed: ANSI-C-like fprintf(), fscanf()

Actually homebrewed fprintf_ works fine (SD file checked on PC), just fscanf_ muddles all up.

Up to now I've used a homebrewed function fscanf_ but it doesn't work for floats in larger files (>400 elements), neither by 1.6.1 nor by 1.6.3 nor by 1.6.5.

These are the homebrewed functions:

Code:

//*******************************************************************************_​**_********
int32_t  fscanf_ ( File \* stream, const char fmtstr[], ... ) {
   const  int32_t   MAXSTRSIZE = 1024;
   char   str[MAXSTRSIZE];
   va_list   args;
   int32_t   i=0, cnt=0;
   int16_t   chr;

   va_start(args, fmtstr);

   strcpy(str, "");
   while ( (stream->available()) && (i < MAXSTRSIZE-1) ) {  
      chr = stream->read() ;
      if (chr>=0 && chr!='\n') {
           str[i]=(char)chr;  
           ++i;
      }
      else break;  
   }

   str[++i] = '\0';

   cnt = vsscanf( str, fmtstr, args );
   va_end(args);

   return cnt;
}

//*******************************************************************************_​**_********

int32_t fprintf_ ( File \* stream, const char fmtstr[], ... ) {
   char      str[1024];
   va_list   args;
   int32_t   num;

   va_start( args, fmtstr );
   num = vsnprintf(str, sizeof(str), fmtstr, args);
   stream->print(str);
   va_end( args );

   return num;
}

//*******************************************************************************_​**_********
@q2dg
Copy link

q2dg commented Jun 21, 2015

@shiftleftplusone
Copy link
Author

I don't understand unfortunately how in your topic they can read and write strings sequentially from an SD file and convert it to int or float. There also are no Arduino SD class functions available like, e.g., SD.freadFloat() or SD.freadDouble() or SD.freadInt16() or SD.freadInt32(). In principle, a file system plus ANSI C stdio.h functionality would be best (i.e., fprintf, fscanf) because they work with standard format strings ("%f %d %ld" ) both for writing to and reading from an SD file.

@sandeepmistry sandeepmistry transferred this issue from arduino/Arduino Sep 16, 2019
@per1234 per1234 changed the title urgently needed: ANSI-C-like fprintf(), fscanf() ANSI-C-like fprintf(), fscanf() Feb 4, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants