winlink challenge answer improvment

This commit is contained in:
richonguzman 2024-04-26 16:55:44 -04:00
parent 0f8bc808da
commit 2ba750d8e3
1 changed files with 3 additions and 1 deletions

View File

@ -23,7 +23,9 @@ namespace WINLINK_Utils {
challengeAnswer += Config.winlink.password[digit - 1]; challengeAnswer += Config.winlink.password[digit - 1];
} }
} }
challengeAnswer += "AZ6"; challengeAnswer += char(random(65,90));
challengeAnswer += char(random(48,57));
challengeAnswer += char(random(65,90));
delay(500); delay(500);
MSG_Utils::sendMessage(1, "WLNK-1", challengeAnswer); MSG_Utils::sendMessage(1, "WLNK-1", challengeAnswer);
} }