fixed old consts

This commit is contained in:
jakeg00dwin 2024-10-04 16:23:32 -07:00
parent c8ba39d3bb
commit dd35358e67
1 changed files with 2 additions and 2 deletions

View File

@ -94,9 +94,9 @@ uint8_t Radio_Configure(void) {
Serial.println("Radio_Configure(): failed to set frequency");
return Err;
}
Serial.print("Set Freq to: "); Serial.println(RF95_FREQ);
Serial.print("Set Freq to: "); Serial.println(RF9X_FREQ);
rf95.setTxPower(TX_POWER_LOW, false);
rf95.setTxPower(RF9X_MIN_DB, false);
return Ok;
}