By the way, if I don't turn on TTS, it works all day! So that rules out the comm port and the USB connection. I will chk my TTS settings and see what up.
Hey KD7EIR, are U a member of Cactus? Yes, I agree it may be something here, but on two machines? plus it works like a charm without TTS. Anyway, you can't beat the price, and TTS is just a luxury since everything is right her in front of me, so no biggie. Yes it will read messages, I am completely updated, and I also use the latest version of the software.
V.07 does it too..cashes with TTS after 3 mins. And the version of TTS is 8.0, not sure, but I think it is the latest.
I have played with remoting the home patrol and the command is different ('RMT\tSTATUS\tchksum\r') thats why this program doesnt work with this program. Even the check sum appears to be reqiured
how is the check sum calculated, the docs I found was confusing.
it was confusing but really fairly simple checksum, its a 2 byte data, short type integer in C# and it is a summation of each character including the tabs (\t) and then append it to the end of the line after the final \t and end it with a \r (Return I think its called) I will paste some code from C#:
String CheckSum(String SS)
{
short Sum = 0;
for (int i = 0; i < SS.Length; i++)
{
Sum += (short) SS;
}
return Sum.ToString();
}
and code for the 'RMT\tSTATUS\t':
Command = "RMT\tSTATUS\t";
serialPort1.WriteLine(Command + CheckSum(Command) + "\r");