LoginSignup
1
1

More than 5 years have passed since last update.

超絶お手軽 連続シリアルファイル転送

Posted at

TeraTerm の sendfile ダイアログがいちいちキーボードフォーカス奪うので。

@echo off

set port=COM1
set file=c:\tmp\send.txt
set log=log.txt

mode %port%: BAUD=115200 PARITY=N DATA=8
mode %port%: /STATUS >> %log%

:loop

echo %date% %time% 
echo %date% %time% >> %log%
copy "%file%" \\?\%port% 

goto loop
1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1