|
@@ -107,7 +107,7 @@ bool write_data(int &pos, const uint8_t *value, uint16_t size, uint16_t *crc) {
|
107
|
107
|
SERIAL_PROTOCOLPAIR(" write_data(", pos); // This extra chit-chat goes away soon. But it is helpful
|
108
|
108
|
SERIAL_PROTOCOLPAIR(",", (int)value); // right now to see errors that are happening in the
|
109
|
109
|
SERIAL_PROTOCOLPAIR(",", (int)size); // read_data() and write_data() functions
|
110
|
|
- SERIAL_PROTOCOL("...)\n");
|
|
110
|
+ SERIAL_PROTOCOLLNPGM("...)");
|
111
|
111
|
SERIAL_PROTOCOLLNPAIR(" f_lseek()=", (int)s);
|
112
|
112
|
return s;
|
113
|
113
|
}
|
|
@@ -117,7 +117,7 @@ bool write_data(int &pos, const uint8_t *value, uint16_t size, uint16_t *crc) {
|
117
|
117
|
SERIAL_PROTOCOLPAIR(" write_data(", pos); // This extra chit-chat goes away soon. But it is helpful
|
118
|
118
|
SERIAL_PROTOCOLPAIR(",", (int)value); // right now to see errors that are happening in the
|
119
|
119
|
SERIAL_PROTOCOLPAIR(",", size); // read_data() and write_data() functions
|
120
|
|
- SERIAL_PROTOCOLLN("...)");
|
|
120
|
+ SERIAL_PROTOCOLLNPGM("...)");
|
121
|
121
|
SERIAL_PROTOCOLLNPAIR(" f_write()=", (int)s);
|
122
|
122
|
SERIAL_PROTOCOLPAIR(" size=", size);
|
123
|
123
|
SERIAL_PROTOCOLLNPAIR("\n bytes_written=", bytes_written);
|
|
@@ -136,7 +136,7 @@ bool read_data(int &pos, uint8_t* value, uint16_t size, uint16_t *crc, const boo
|
136
|
136
|
SERIAL_PROTOCOLPAIR(" read_data(", pos); // This extra chit-chat goes away soon. But it is helpful
|
137
|
137
|
SERIAL_PROTOCOLPAIR(",", (int)value); // right now to see errors that are happening in the
|
138
|
138
|
SERIAL_PROTOCOLPAIR(",", size); // read_data() and write_data() functions
|
139
|
|
- SERIAL_PROTOCOLLN("...)");
|
|
139
|
+ SERIAL_PROTOCOLLNPGM("...)");
|
140
|
140
|
SERIAL_PROTOCOLLNPAIR(" f_lseek()=", (int)s);
|
141
|
141
|
return true;
|
142
|
142
|
}
|
|
@@ -153,7 +153,7 @@ bool read_data(int &pos, uint8_t* value, uint16_t size, uint16_t *crc, const boo
|
153
|
153
|
SERIAL_PROTOCOLPAIR(" read_data(", pos); // This extra chit-chat goes away soon. But it is helpful
|
154
|
154
|
SERIAL_PROTOCOLPAIR(",", (int)value); // right now to see errors that are happening in the
|
155
|
155
|
SERIAL_PROTOCOLPAIR(",", size); // read_data() and write_data() functions
|
156
|
|
- SERIAL_PROTOCOLLN("...)");
|
|
156
|
+ SERIAL_PROTOCOLLNPGM("...)");
|
157
|
157
|
SERIAL_PROTOCOLLNPAIR(" f_write()=", (int)s);
|
158
|
158
|
SERIAL_PROTOCOLPAIR(" size=", size);
|
159
|
159
|
SERIAL_PROTOCOLLNPAIR("\n bytes_read=", bytes_read);
|