I am using TRANSFER(from DATALIGHT CORP)to send files to a motor controller via a laptop which is using PROCOMM+4.8
The partial script file shown below, sends a file from my laptop to the FlashDisk "C:" on the controller.
This code works great with no errors...
TRANSMIT "a:TRANSFER /R ";Initialize the transfer prog
TRANSMIT "C:"
TRANSMIT "LIST.CSV" ;Upload the LIST.CSV file
TRANSMIT "^M"
WAITFOR "..."
SENDFILE XMODEM "C:\SCM\LIST.CSV";Set upload file path
.
.
I also want to receive a file from the controller at the RAMDISK "B:" and am trying to use the following script.
However I get a "Packet Type Error" and eventually a "TIMEOUT" from the GETFILE XMODEM command.
TRANSMIT "a:TRANSFER /S ";Initialize the transfer prog
TRANSMIT "B:"
TRANSMIT "USERSEQ.SAV" ;Download the USERSEQ.SAV file
TRANSMIT "^M"
WAITFOR "..."
GETFILE XMODEM "C:\SCM\USERSEQ.SAV";Set downld file path
.
.
What does this mean and how can I get rid of the error?
Best regards,
The partial script file shown below, sends a file from my laptop to the FlashDisk "C:" on the controller.
This code works great with no errors...
TRANSMIT "a:TRANSFER /R ";Initialize the transfer prog
TRANSMIT "C:"
TRANSMIT "LIST.CSV" ;Upload the LIST.CSV file
TRANSMIT "^M"
WAITFOR "..."
SENDFILE XMODEM "C:\SCM\LIST.CSV";Set upload file path
.
.
I also want to receive a file from the controller at the RAMDISK "B:" and am trying to use the following script.
However I get a "Packet Type Error" and eventually a "TIMEOUT" from the GETFILE XMODEM command.
TRANSMIT "a:TRANSFER /S ";Initialize the transfer prog
TRANSMIT "B:"
TRANSMIT "USERSEQ.SAV" ;Download the USERSEQ.SAV file
TRANSMIT "^M"
WAITFOR "..."
GETFILE XMODEM "C:\SCM\USERSEQ.SAV";Set downld file path
.
.
What does this mean and how can I get rid of the error?
Best regards,