diff --git a/Doc/ChangeLog.txt b/Doc/ChangeLog.txt index d93d7871..c53feceb 100644 --- a/Doc/ChangeLog.txt +++ b/Doc/ChangeLog.txt @@ -1,3 +1,7 @@ +Version 3.0.1 +------------- +- WBW: Increase XModem timeout waiting for host to start sending + Version 3.0.0 ------------- - WBW: v2.9.2 -> 3.0 version upgrade due to scope of changes diff --git a/Doc/Contrib/SC126_How-To_No_2_Preparing_an_SD_Card_for_Use_with_SC126_v1.5.2.pdf b/Doc/Contrib/SC126_How-To_No_2_Preparing_an_SD_Card_for_Use_with_SC126_v1.5.3.pdf similarity index 63% rename from Doc/Contrib/SC126_How-To_No_2_Preparing_an_SD_Card_for_Use_with_SC126_v1.5.2.pdf rename to Doc/Contrib/SC126_How-To_No_2_Preparing_an_SD_Card_for_Use_with_SC126_v1.5.3.pdf index 4c975809..94f75b63 100644 Binary files a/Doc/Contrib/SC126_How-To_No_2_Preparing_an_SD_Card_for_Use_with_SC126_v1.5.2.pdf and b/Doc/Contrib/SC126_How-To_No_2_Preparing_an_SD_Card_for_Use_with_SC126_v1.5.3.pdf differ diff --git a/Source/Apps/XM/xmdm125.asm b/Source/Apps/XM/xmdm125.asm index 01ab3052..af648a08 100644 --- a/Source/Apps/XM/xmdm125.asm +++ b/Source/Apps/XM/xmdm125.asm @@ -2213,6 +2213,14 @@ ILLDU: CALL ERXIT ; RCVRECD:XRA A ; Initialize error count to zero STA ERRCT +; +;WBW BEGIN: Be more patient waiting for host to start sending file + LDA FRSTIM ; WBW: Get first time flag + ORA A ; WBW: Set CPU flags + JNZ RCVRPT ; WBW: If not first time, bypass + MVI A,-10 ; WBW: Else increase error limit + STA ERRCT ; WBW: Save error new limit +;WBW END ; RCVRPT: IF CONFUN ; Check for function key? CALL FUNCHK ; Yeah, why not?