Skip to content

Reading multiple files at the same time, row by row #27

@hapiel

Description

@hapiel

It's currently not easily possible to read multiple files at the same time, when using row by row mode.

Each csv parse instance refers to the same feedRowParser() which then uses the same file:

char feedRowParser() {
  return file.read();
}
bool rowParserFinished() {
  return ((file.available()>0)?false:true);
}

I think it would be better if you can somehow set functions when creating the csv parse instance.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions