Skip to content

Commit

Permalink
fix rf gateway f strings (#1313)
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Krämer <christian.kraemer@tngtech.com>
  • Loading branch information
crasu authored Nov 7, 2022
1 parent 567c205 commit 7c8b85f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main/ZgatewayRF.ino
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ void setupRF() {
Log.notice(F("RF_RECEIVER_GPIO: %d " CR), RF_RECEIVER_GPIO);
# ifdef ZradioCC1101 //receiving with CC1101
if (ELECHOUSE_cc1101.getCC1101()) {
Log.notice("C1101 spi Connection OK");
Log.notice(F("C1101 spi Connection OK" CR));
} else {
Log.error("C1101 spi Connection Error");
Log.error(F("C1101 spi Connection Error" CR));
}

ELECHOUSE_cc1101.Init();
Expand Down

0 comments on commit 7c8b85f

Please sign in to comment.