We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbe81e2 commit f8cfac1Copy full SHA for f8cfac1
libraries/Preferences/src/Preferences.cpp
@@ -28,7 +28,6 @@ Preferences::~Preferences() {
28
bool Preferences::begin(const char * name, bool readOnly, const char* partition_label){
29
string res = "";
30
modem.begin();
31
- modem.debug(Serial,2);
32
if (name != nullptr && strlen(name) > 0) {
33
if (modem.write(string(PROMPT(_PREF_BEGIN)), res, "%s%s,%d,%s\r\n", CMD_WRITE(_PREF_BEGIN), name, readOnly, partition_label != NULL ? partition_label : "")) {
34
return (atoi(res.c_str()) != 0) ? true : false;
0 commit comments