Skip to content

Parsing send commands is broken #6

@GoogleCodeExporter

Description

@GoogleCodeExporter
The parsing of commands to send is broken.  In function "stdin_read_callback"

You have to change it from :

while ((c = fgetc(fin)) != '\n'  &&  c != ' ' &&  c != EOF  &&  n < hex->max)

to

while ((c = fgetc(fin)) != '\n'  && c != EOF  &&  n < hex->max)


It is stopping at the first space, the raw buffer length is always 2!

Original issue reported on code.google.com by bevi...@gmail.com on 26 Sep 2010 at 7:38

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions