@@ -167,7 +167,7 @@ class GSM3ShieldV1ModemCore : public GSM3SoftSerialMgr, public Print
167
167
@param CR Carriadge return adding automatically
168
168
@return size
169
169
*/
170
- virtual size_t writePGM (PROGMEM prog_char str[] , bool CR=true );
170
+ virtual size_t writePGM (PGM_P str, bool CR=true );
171
171
172
172
/* * Establish debug mode
173
173
@param db Boolean that indicates debug on or off
@@ -182,24 +182,18 @@ class GSM3ShieldV1ModemCore : public GSM3SoftSerialMgr, public Print
182
182
*/
183
183
bool genericParse_rsp (bool & rsp, char * string=0 , char * string2=0 );
184
184
185
- /* * Generates a generic AT command request from PROGMEM prog_char buffer
185
+ /* * Generates a generic AT command request from PROGMEM buffer
186
186
@param str Buffer with AT command
187
187
@param addCR Carriadge return adding automatically
188
188
*/
189
- void genericCommand_rq (PROGMEM prog_char str[] , bool addCR=true );
189
+ void genericCommand_rq (PGM_P str, bool addCR=true );
190
190
191
191
/* * Generates a generic AT command request from a simple char buffer
192
192
@param str Buffer with AT command
193
193
@param addCR Carriadge return adding automatically
194
194
*/
195
195
void genericCommand_rqc (const char * str, bool addCR=true );
196
196
197
- /* * Generates a generic AT command request from characters buffer
198
- @param str Buffer with AT command
199
- @param addCR Carriadge return adding automatically
200
- */
201
- void genericCommand_rq (const char * str, bool addCR=true );
202
-
203
197
/* * Returns the circular buffer
204
198
@return circular buffer
205
199
*/
@@ -257,4 +251,4 @@ class GSM3ShieldV1ModemCore : public GSM3SoftSerialMgr, public Print
257
251
258
252
extern GSM3ShieldV1ModemCore theGSM3ShieldV1ModemCore;
259
253
260
- #endif
254
+ #endif
0 commit comments