Fix retries code

Signed-off-by: franchioping <franchioping@gmail.com>
This commit is contained in:
franchioping 2024-06-15 20:34:59 +01:00
parent b973cce49b
commit c49a695ddb
1 changed files with 12 additions and 2 deletions

View File

@ -97,11 +97,12 @@ void init_pressure_failsafe(){
*/ */
bool sucess_pressure = false; bool sucess_pressure = false;
for(int i = 0; i < INIT_RETRIES; i++){ for(int i = 0; i < INIT_RETRIES; i++){
sucess_temperature = bmp.begin(BMP085_ULTRAHIGHRES); sucess_pressure = bmp.begin(BMP085_ULTRAHIGHRES);
if(sucess_temperature){ if(sucess_pressure){
Serial.println("BMP180 initialized succesfully on attempt ", i) Serial.println("BMP180 initialized succesfully on attempt ", i)
break; break;
} }
delay(50);
} }
} }
@ -229,6 +230,7 @@ void init_temperature_failsafe(){
Serial.println("DS18B20 initialized succesfully on attempt ", i) Serial.println("DS18B20 initialized succesfully on attempt ", i)
break; break;
} }
delay(50);
} }
} }
@ -257,10 +259,18 @@ void init_radio_failsafe(){
Serial.println("RF69 initialized succesfully on attempt ", i) Serial.println("RF69 initialized succesfully on attempt ", i)
break; break;
} }
delay(50);
} }
radio.setHighPower(); radio.setHighPower();
} }