We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There is no unescape in: readStringArg() copyStringArg() compareStringArg()
So you got (with ID=1) from readStringArg() for the transmitted string:
1,Hello\,World\;Or what?;
"Hello\,World\;Or what?" Of course you can unescape this no in user sketch, but I think, this is not as it should be?
The text was updated successfully, but these errors were encountered:
some unescape() are missing (issue thijse#39)
f284382
I fixed this in my fork and it is included in poll #37.
Now you got: "Hello, World; Or what?"
Sorry, something went wrong.
Apply improvements by @sigmaeo
a0d2340
Changes applied from: <https://github.com/sigmaeo/Arduino-CmdMessenger/tree/eb8e413f1313dbf5012ae6b751a6246b41a4e5ad> - Fix startCommand was not initialized not a problem on arduino, but with C++-Builder on Windows - Add missing unescape() are missing (issue thijse#39) - Make readBin() safe for less received bytes (see issue thijse#38) - Replace Serial.print() with comms->print()
No branches or pull requests
There is no unescape in:
readStringArg()
copyStringArg()
compareStringArg()
So you got (with ID=1) from readStringArg() for the transmitted string:
"Hello\,World\;Or what?"
Of course you can unescape this no in user sketch, but I think, this is not as it should be?
The text was updated successfully, but these errors were encountered: