[AX25] Replaced constant with macro

This commit is contained in:
jgromes 2020-09-12 13:41:45 +02:00
parent 38b3f33c82
commit b337b5e22f

View file

@ -406,7 +406,7 @@ int16_t AX25Client::sendFrame(AX25Frame* frame) {
} else { } else {
_audio->tone(AX25_AFSK_SPACE, false); _audio->tone(AX25_AFSK_SPACE, false);
} }
while(Module::micros() - start < 833) { while(Module::micros() - start < AX25_AFSK_TONE_DURATION) {
Module::yield(); Module::yield();
} }
} }