at: remove call to g_strstrip before sending commando

This log statement called g_strstrip before sending the command, which
caused it to fail because it doesn't send the newline required to run
it.
This commit is contained in:
ArenM
2021-10-04 23:26:16 -04:00
parent 8ae79fa34c
commit 89b7dfda2f

View File

@@ -83,8 +83,6 @@ gboolean at_send_command(struct EG25Manager *manager)
manager->at_callback = at_cmd->callback;
g_message("Sending command: %s", g_strstrip(command));
do {
ret = write(manager->at_fd, &command[pos], len);