From bcd8a059ad0b7d51571cdc23c71ecf613f85b71b Mon Sep 17 00:00:00 2001 From: Ralf9 Date: Sun, 16 Jun 2019 19:49:48 +0200 Subject: [PATCH] =?UTF-8?q?RF=5FReceiver.ino=20-=20update=20Version=20to?= =?UTF-8?q?=20V=203.3.2.1-rc9=20Versiontext=20erg=C3=A4nzt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- RF_Receiver/RF_Receiver.ino | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/RF_Receiver/RF_Receiver.ino b/RF_Receiver/RF_Receiver.ino index 9031873..6085495 100644 --- a/RF_Receiver/RF_Receiver.ino +++ b/RF_Receiver/RF_Receiver.ino @@ -53,7 +53,7 @@ #define PROGNAME "RF_RECEIVER" -#define PROGVERS "3.3.2.1-rc8" +#define PROGVERS "3.3.2.1-rc9" #define VERSION_1 0x33 #define VERSION_2 0x21 @@ -480,7 +480,7 @@ void send_mc(const uint8_t startpos,const uint8_t endpos, const int16_t clock) stoptime += clock; while (stoptime > micros()) - yield(); + ; } } @@ -761,12 +761,15 @@ void HandleCommand() MSG_PRINT(F("V " PROGVERS " SIGNALduino ")); if (hasCC1101) { MSG_PRINT(F("cc1101 ")); - #ifdef PIN_MARK433 - MSG_PRINT("("); +#ifdef PIN_MARK433 + MSG_PRINT(F("(minicul ")); MSG_PRINT(isLow(PIN_MARK433) ? "433" : "868"); - MSG_PRINT(F("Mhz )")); - #endif + MSG_PRINT(F("Mhz) ")); +#endif } +#ifdef SENDTODECODER + MSG_PRINT(F("(no receive, only send to decoder) ")); +#endif MSG_PRINTLN(F("- compiled at " __DATE__ " " __TIME__)); }