Skip to content

Commit a718ac7

Browse files
committed
app: at: Delete char not added to AT command
Delete (0x7F) used to delete previous character but delete byte 0x7F was added to AT command buffer resulting in syntax error. Delete is not added to the AT command anymore. Jira: SM-330 Signed-off-by: Tommi Rantanen <tommi.rantanen@nordicsemi.no>
1 parent 1efc17e commit a718ac7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/src/sm_at_host.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1272,7 +1272,7 @@ static size_t cmd_rx_handler(struct sm_at_host_ctx *ctx, uint8_t c)
12721272
} else {
12731273
ctx->prev_character = '\0';
12741274
}
1275-
break;
1275+
goto handle_echo;
12761276
default:
12771277
break;
12781278
}

0 commit comments

Comments
 (0)