Parcourir la source

send cancel symbol in case of reset with cancel

Fischer, Simon | Friedrich Lütze GmbH il y a 1 an
Parent
commit
8ba735f375
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  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();