Explorar el Código

send cancel symbol in case of reset with cancel

Fischer, Simon | Friedrich Lütze GmbH hace 1 año
padre
commit
8ba735f375
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      src/shellmatta_ymodem.c

+ 2 - 0
src/shellmatta_ymodem.c

@@ -526,6 +526,8 @@ void shellmatta_ymodem_reset(shellmatta_handle_t handle, bool doCancel)
     /* call cancel callback function */
     if (doCancel)
     {
+        /* send cancel symbol */
+        shellmatta_ymodem_control(handle, YMODEM_CA);
         if (shellmatta_ymodem_callbacks.yModemCancelCallback != (void*)0u)
         {
             shellmatta_ymodem_callbacks.yModemCancelCallback();