LaunchAPPLServer: "Listening on TCP" message

This commit is contained in:
Wolfgang Thaller 2019-01-09 00:15:44 +01:00
parent ce9deca9db
commit 3bb5ce4e74
3 changed files with 6 additions and 1 deletions

View File

@ -293,7 +293,8 @@ public:
void onReset()
{
statusDisplay->SetStatus(gPrefs.port == Port::printerPort ? AppStatus::readyPrinter : AppStatus::readyModem, 0, 0);
AppStatus readyState{ (int)AppStatus::readyModem + (int)gPrefs.port - (int)Port::modemPort };
statusDisplay->SetStatus(readyState, 0, 0);
state = State::command;
}

View File

@ -113,6 +113,8 @@ resource 'STR#' (128, purgeable) {
{
"Listening on Modem Port...";
"Listening on Printer Port...";
"Listening on TCP port 1984 (MacTCP)...";
"Listening on TCP port 1984 (OpenTransport)...";
"Downloading Application...";
"Downloading Upgrade...";
"Running Application...";

View File

@ -9,6 +9,8 @@ enum class AppStatus
empty = 0,
readyModem = 1,
readyPrinter,
readyMacTCP,
readyOpenTpt,
downloading,
upgrading,
running,