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 fa0ab3e commit f789de3Copy full SHA for f789de3
connectivity/drivers/cellular/QUECTEL/BC95/QUECTEL_BC95_CellularStack.cpp
@@ -225,8 +225,13 @@ nsapi_size_or_error_t QUECTEL_BC95_CellularStack::socket_sendto_impl(CellularSoc
225
226
// check for network congestion
227
device_err_t err = _at.get_last_device_error();
228
- if ((err.errType == DeviceErrorTypeErrorCME &&
229
- (err.errCode == AT_UART_BUFFER_ERROR || err.errCode == AT_BACK_OFF_TIMER)) || err.errCode == AT_UPLINK_BUSY) {
+ if (
+ (
230
+ err.errType == DeviceErrorTypeErrorCME
231
+ && (err.errCode == AT_UART_BUFFER_ERROR || err.errCode == AT_BACK_OFF_TIMER)
232
+ )
233
+ || err.errCode == AT_UPLINK_BUSY
234
+ ) {
235
if (socket->proto == NSAPI_UDP) {
236
if (retry < 3) {
237
retry++;
0 commit comments