@@ -733,7 +733,7 @@ int handle_request(char *cmdstr){
733
733
// Skip any spaces
734
734
while (* cmdptr == ' ' )
735
735
cmdptr ++ ;
736
- if (strncmp ((const char * )cmdptr , "settime" , 7 ) == 0 ){
736
+ if (start == false && strncmp ((const char * )cmdptr , "settime" , 7 ) == 0 ){
737
737
start = true;
738
738
739
739
if (cmdptr [8 ] != 0 && strlen (cmdptr + 8 ) < 12 ){
@@ -771,31 +771,31 @@ int handle_request(char *cmdstr){
771
771
}
772
772
command = EQ3_SETTIME ;
773
773
}
774
- if (strncmp ((const char * )cmdptr , "boost" , 5 ) == 0 ){
774
+ if (start == false && strncmp ((const char * )cmdptr , "boost" , 5 ) == 0 ){
775
775
start = true;
776
776
command = EQ3_BOOST ;
777
777
}
778
- if (strncmp ((const char * )cmdptr , "unboost" , 7 ) == 0 ){
778
+ if (start == false && strncmp ((const char * )cmdptr , "unboost" , 7 ) == 0 ){
779
779
start = true;
780
780
command = EQ3_UNBOOST ;
781
781
}
782
- if (strncmp ((const char * )cmdptr , "auto" , 4 ) == 0 ){
782
+ if (start == false && strncmp ((const char * )cmdptr , "auto" , 4 ) == 0 ){
783
783
start = true;
784
784
command = EQ3_AUTO ;
785
785
}
786
- if (strncmp ((const char * )cmdptr , "manual" , 6 ) == 0 ){
786
+ if (start == false && strncmp ((const char * )cmdptr , "manual" , 6 ) == 0 ){
787
787
start = true;
788
788
command = EQ3_MANUAL ;
789
789
}
790
- if (strncmp ((const char * )cmdptr , "lock" , 4 ) == 0 ){
790
+ if (start == false && strncmp ((const char * )cmdptr , "lock" , 4 ) == 0 ){
791
791
start = true;
792
792
command = EQ3_LOCK ;
793
793
}
794
- if (strncmp ((const char * )cmdptr , "unlock" , 6 ) == 0 ){
794
+ if (start == false && strncmp ((const char * )cmdptr , "unlock" , 6 ) == 0 ){
795
795
start = true;
796
796
command = EQ3_UNLOCK ;
797
797
}
798
- if (strncmp ((const char * )cmdptr , "offset" , 6 ) == 0 ){
798
+ if (start == false && strncmp ((const char * )cmdptr , "offset" , 6 ) == 0 ){
799
799
char * endmsg ;
800
800
float offset = strtof (cmdptr + 7 , & endmsg );
801
801
if (offset < -3.5 || offset > 3.5 ){
@@ -810,7 +810,7 @@ int handle_request(char *cmdstr){
810
810
command = EQ3_OFFSET ;
811
811
ESP_LOGI (GATTC_TAG , "set offset val 0x%x\n" , cmdparms [0 ]);
812
812
}
813
- if (strncmp ((const char * )cmdptr , "settemp" , 7 ) == 0 ){
813
+ if (start == false && strncmp ((const char * )cmdptr , "settemp" , 7 ) == 0 ){
814
814
char * endmsg ;
815
815
float temp = strtof (cmdptr + 8 , & endmsg );
816
816
int inttemp = (int )temp ;
@@ -826,13 +826,13 @@ int handle_request(char *cmdstr){
826
826
return -1 ;
827
827
}
828
828
}
829
- if (strncmp ((const char * )cmdptr , "off" , 3 ) == 0 ){
829
+ if (start == false && strncmp ((const char * )cmdptr , "off" , 3 ) == 0 ){
830
830
/* 'Off' is achieved by setting the required temperature to 4.5 */
831
831
start = true;
832
832
command = EQ3_SETTEMP ;
833
833
cmdparms [0 ] = 0x09 ; /* (4 << 1) | 0x01 */
834
834
}
835
- if (strncmp ((const char * )cmdptr , "on" , 2 ) == 0 ){
835
+ if (start == false && strncmp ((const char * )cmdptr , "on" , 2 ) == 0 ){
836
836
/* 'On' is achieved by setting the required temperature to 30 */
837
837
start = true;
838
838
command = EQ3_SETTEMP ;
@@ -1120,7 +1120,7 @@ void wifidone(int rc){
1120
1120
time_t now = 0 ;
1121
1121
struct tm timeinfo = { 0 };
1122
1122
int retry = 0 ;
1123
- const int retry_count = 10 ;
1123
+ const int retry_count = 30 ;
1124
1124
while (timeinfo .tm_year < (2019 - 1900 ) && ++ retry < retry_count ) {
1125
1125
ESP_LOGI (GATTC_TAG , "Waiting for system time to be set... (%d/%d)" , retry , retry_count );
1126
1126
vTaskDelay (2000 / portTICK_PERIOD_MS );
0 commit comments