Using constant instead of serial.read()

This line

long myTestMessage = "A125";

is suffering because of the mistake I had in Reply #2. Change it to

char myTestMessage[] = "A125";

In Reply #2 I had forgotten the [ ]

...R