Delay after courtesytone

This commit is contained in:
Jim Colderwood 2024-04-05 12:04:39 +01:00
parent dfcd8104f8
commit 58075ab35b

View File

@ -40,13 +40,13 @@ void courtesyTone(repeater* myrpt) {
switch(myrpt->params.courtesy) {
case TONE:
myrpt->last == TT ? tone(3, myrpt->params.pip_pitch, myrpt->params.pip_length) : tone(3, myrpt->params.pip_gw_pitch, myrpt->params.pip_gw_length);
if (TAILPIPS)
delay(150);
break;
case CW:
myrpt->last == TT ? sendChar(myrpt->params.pip_speed,myrpt->params.pip_pitch,myrpt->params.pip_letter) : sendChar(myrpt->params.pip_speed,myrpt->params.pip_gw_pitch, myrpt->params.pip_gw_letter);
break;
}
if (TAILPIPS)
delay(myrpt->params.pip_length);
}
void serial_writer(serial* s, char* buff) {