Hi Mark -
Glad you got it working.? Mine still won't connect from a clean boot.? ?Curious what you did - can you post the extract of your serial code....
This is mine...
in setup...
void ft857d::begin(long br, int mode) {
? ? Serial.begin(br, mode);
? ? Serial.flush();
}
from the main loop...
void ft857d::check() {
? ? // do nothing if it was disabled by software
? ? if (!enabled) return;
?
? ? // first check if we have at least 5 bytes waiting on the buffer
? ? byte i = Serial.available();
? ? if (i < 5) return;
?
? ? // if you got here then there is at least 5 bytes waiting: get it.
? ? for (i=0; i<5; i++) {
? ? ? ? nullPad[i] = Serial.read();
? ? }
? ?// do something useful...
? ?// and eventually...
? ?Serial.write(ACK);
}
That is it.? Is yours any different?
Thanks,
Dean
KK4DAS