Seeking Terminal Program With Ability to Capture To File
-
I'm looking for a piece of freeware; actually two pieces. First piece: a terminal program that can run at BlueTooth speed and save a lot of data. I'm currently using Terminal.EXE (found here HERE[^] ) will do it. At the moment, I'm sending 16K bytes in one large block. He does capture it, and does save the data to file, which is good for the one block that I'm sending him, but later on, I intend to send him 16K bytes every second, like clockwork. That number may increase to 32K and possibly 64K. He is having trouble handling this load of data at BlueTooth Speed. I also need a Second piece of freeware: It will do just the opposite; i.e., send out data (again, terminal by bray++ may do the job; I don't konw it well enough at the moment). - I need to be able to decide what the bytes will be in the data stream - I need the program to repeatedly send out that string over and over. - A delay of X-amount of time between the bursts would be extremely helpful - The value of X should be expandable at least up to 1 second, and 5 or 10 would be great, along with half a second, 0.1, etc. - An external input file would be stupendous - Repeating the external input file would be turbo stupendous - Repeating the external input file with a programmed X-amount of delay time would be turbo drastic stupendous If anyone reading has a script for Terminal.EXE that will resend a 64 byte string of code over and over, with a predictably timed loop, especially if it had a wait loop that would let me do something like this phony code, that would be super...
THE_TOP_OF_THE_LOOP:
THE_STRING = 0xFF, 0x0B, 0x00, 0x0E, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
FOR I = 1 TO 256 STEP 1
SEND THE_STRING OUT PORT N
NEXT IWAIT 1 SECOND
LOOP TO THE_TOP_OF_THE_LOOP
(Hope this doesn't violate cross-posting rules, A member in the Lounge pointed me here)