@@ -83,7 +83,7 @@ class ATCmdParser : private NonCopyable<ATCmdParser> {
83
83
* Constructor
84
84
*
85
85
* @param fh A FileHandle to the digital interface, used for AT commands
86
- * @param output_delimiter End of command line termination
86
+ * @param output_delimiter End of command- line termination
87
87
* @param buffer_size Size of internal buffer for transaction
88
88
* @param timeout Timeout of the connection
89
89
* @param debug Turns on/off debug output for AT commands
@@ -114,7 +114,7 @@ class ATCmdParser : private NonCopyable<ATCmdParser> {
114
114
/* *
115
115
* Allows timeout to be changed between commands
116
116
*
117
- * @param timeout ATCmdParser API's (read/write/send/recv ..etc) throw an
117
+ * @param timeout ATCmdParser APIs (read/write/send/recv ..etc) throw an
118
118
* error if no response is received in `timeout` duration
119
119
*/
120
120
void set_timeout (int timeout)
@@ -123,13 +123,13 @@ class ATCmdParser : private NonCopyable<ATCmdParser> {
123
123
}
124
124
125
125
/* *
126
- * For backwards compatibility.
126
+ * For backward compatibility.
127
127
* @deprecated Do not use this function. This function has been replaced with set_timeout for consistency.
128
128
*
129
129
* Please use set_timeout(int) API only from now on.
130
130
* Allows timeout to be changed between commands
131
131
*
132
- * @param timeout ATCmdParser API's (read/write/send/recv ..etc) throw an
132
+ * @param timeout ATCmdParser APIs (read/write/send/recv ..etc) throw an
133
133
* error if no response is received in `timeout` duration
134
134
*
135
135
*/
@@ -176,7 +176,7 @@ class ATCmdParser : private NonCopyable<ATCmdParser> {
176
176
}
177
177
178
178
/* *
179
- * For backwards compatibility.
179
+ * For backward compatibility.
180
180
* @deprecated Do not use this function. This function has been replaced with debug_on for consistency.
181
181
*
182
182
* Allows traces from modem to be turned on or off
@@ -296,7 +296,7 @@ class ATCmdParser : private NonCopyable<ATCmdParser> {
296
296
/* *
297
297
* Abort current recv
298
298
*
299
- * Can be called from oob handler to interrupt the current
299
+ * Can be called from out-of-band handler to interrupt the current
300
300
* recv operation.
301
301
*/
302
302
void abort ();
@@ -307,7 +307,7 @@ class ATCmdParser : private NonCopyable<ATCmdParser> {
307
307
* Process out-of-band data in the receive buffer. This function
308
308
* returns immediately if there is no data to process.
309
309
*
310
- * @return true if oob data processed, false otherwise
310
+ * @return true if out-of-band data processed, false otherwise
311
311
*/
312
312
bool process_oob (void );
313
313
};
0 commit comments