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
Currently there aren't really any nice ways to display packet information to a string.
It would be cool if there was a function along the lines of
void packetToString(packet_t packet, const char* out, size_t out_len);
which wrote string data to out, stopping at out_len bytes.
out
out_len
If we updated the obc networking code to use c++ instead of c (which we should do) this could just return an std::string
std::string
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently there aren't really any nice ways to display packet information to a string.
It would be cool if there was a function along the lines of
which wrote string data to
out
, stopping atout_len
bytes.If we updated the obc networking code to use c++ instead of c (which we should do) this could just return an
std::string
The text was updated successfully, but these errors were encountered: