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
This is for the future FRAM scrub. saveField() needs to change to bool and do more logging, e.g.,
saveField()
bool rc; rc = true; if (! cursor.create()) { gLog.printf(gLog.kError, "%s: can't save uKey(0x%x) %u bytes\n", __func__, uKey, nValue ); rc = false; } if (! cursor.put(pValue, nValue)) { gLog.printf(gLog.kError, "%s: can't put uKey(0xx) %u bytes\n", __func__, uKey, nValue ); rc = false; } return rc;
The text was updated successfully, but these errors were encountered:
fix #309: change return type of cFram::saveField() to bool
cFram::saveField()
bool
f9b2274
terrillmoore
No branches or pull requests
This is for the future FRAM scrub.
saveField()
needs to change to bool and do more logging, e.g.,The text was updated successfully, but these errors were encountered: