@@ -491,7 +491,7 @@ esp_err_t gdo_light_on(void) {
491
491
return err ;
492
492
}
493
493
494
- if (g_status .protocol == GDO_PROTOCOL_SEC_PLUS_V1 ) {
494
+ if (g_status .protocol & GDO_PROTOCOL_SEC_PLUS_V1 ) {
495
495
return gdo_v1_toggle_cmd (V1_CMD_TOGGLE_LIGHT_PRESS , 500000 );
496
496
} else {
497
497
err = queue_command (GDO_CMD_LIGHT , GDO_LIGHT_ACTION_ON , 0 , 0 );
@@ -514,7 +514,7 @@ esp_err_t gdo_light_off(void) {
514
514
return err ;
515
515
}
516
516
517
- if (g_status .protocol == GDO_PROTOCOL_SEC_PLUS_V1 ) {
517
+ if (g_status .protocol & GDO_PROTOCOL_SEC_PLUS_V1 ) {
518
518
return gdo_v1_toggle_cmd (V1_CMD_TOGGLE_LIGHT_PRESS , 500000 );
519
519
} else {
520
520
err = queue_command (GDO_CMD_LIGHT , GDO_LIGHT_ACTION_OFF , 0 , 0 );
@@ -550,7 +550,7 @@ esp_err_t gdo_lock(void) {
550
550
return ESP_OK ;
551
551
}
552
552
553
- if (g_status .protocol == GDO_PROTOCOL_SEC_PLUS_V1 ) {
553
+ if (g_status .protocol & GDO_PROTOCOL_SEC_PLUS_V1 ) {
554
554
return gdo_v1_toggle_cmd (V1_CMD_TOGGLE_LOCK_PRESS , 500000 );
555
555
} else {
556
556
return queue_command (GDO_CMD_LOCK , GDO_LOCK_ACTION_LOCK , 0 , 0 );
@@ -566,7 +566,7 @@ esp_err_t gdo_unlock(void) {
566
566
return ESP_OK ;
567
567
}
568
568
569
- if (g_status .protocol == GDO_PROTOCOL_SEC_PLUS_V1 ) {
569
+ if (g_status .protocol & GDO_PROTOCOL_SEC_PLUS_V1 ) {
570
570
return gdo_v1_toggle_cmd (V1_CMD_TOGGLE_LOCK_PRESS , 500000 );
571
571
} else {
572
572
return queue_command (GDO_CMD_LOCK , GDO_LOCK_ACTION_UNLOCK , 0 , 0 );
@@ -773,12 +773,14 @@ esp_err_t gdo_set_min_command_interval(uint32_t ms) {
773
773
static void gdo_sync_task (void * arg ) {
774
774
bool synced = true;
775
775
776
- if (g_status .protocol <= GDO_PROTOCOL_SEC_PLUS_V1 ) {
776
+ if (g_status .protocol != GDO_PROTOCOL_SEC_PLUS_V2 ) {
777
777
uart_set_baudrate (g_config .uart_num , 1200 );
778
778
uart_set_parity (g_config .uart_num , UART_PARITY_EVEN );
779
779
uart_flush (g_config .uart_num );
780
780
xQueueReset (gdo_event_queue );
781
- ulTaskNotifyTake (pdTRUE , pdMS_TO_TICKS (2500 ));
781
+
782
+ // Delay forever if there is a smart panel connected to allow it to come online and sync before we do anything.
783
+ ulTaskNotifyTake (pdTRUE , g_status .protocol == GDO_PROTOCOL_SEC_PLUS_V1_WITH_SMART_PANEL ? portMAX_DELAY : pdMS_TO_TICKS (2500 ));
782
784
783
785
if (g_status .door == GDO_DOOR_STATE_UNKNOWN ) {
784
786
ESP_LOGW (TAG , "V1 panel not found, trying emulation" );
@@ -810,6 +812,8 @@ static void gdo_sync_task(void* arg) {
810
812
goto done ;
811
813
}
812
814
} else {
815
+ ESP_LOGI (TAG , "V1 panel found" );
816
+ g_status .protocol = GDO_PROTOCOL_SEC_PLUS_V1_WITH_SMART_PANEL ;
813
817
goto done ;
814
818
}
815
819
}
@@ -1404,7 +1408,7 @@ static void gdo_main_task(void* arg) {
1404
1408
}
1405
1409
-- rx_pending ;
1406
1410
}
1407
- } else if (g_status .protocol == GDO_PROTOCOL_SEC_PLUS_V1 ) {
1411
+ } else if (g_status .protocol & GDO_PROTOCOL_SEC_PLUS_V1 ) {
1408
1412
if (rx_packet_size != GDO_PACKET_SIZE ) {
1409
1413
ESP_LOGE (TAG , "RX data size error: %u" , rx_packet_size );
1410
1414
uart_read_bytes (g_config .uart_num , rx_buffer , rx_packet_size , 0 );
@@ -1422,7 +1426,7 @@ static void gdo_main_task(void* arg) {
1422
1426
break ;
1423
1427
}
1424
1428
case UART_PARITY_ERR :
1425
- if (g_status .protocol == GDO_PROTOCOL_SEC_PLUS_V1 ) {
1429
+ if (g_status .protocol & GDO_PROTOCOL_SEC_PLUS_V1 ) {
1426
1430
ESP_LOGE (TAG , "Parity error, check wiring?" );
1427
1431
}
1428
1432
break ;
@@ -1553,12 +1557,6 @@ static void update_door_state(const gdo_door_state_t door_state) {
1553
1557
if (door_state > GDO_DOOR_STATE_UNKNOWN && door_state < GDO_DOOR_STATE_MAX ) {
1554
1558
esp_timer_stop (door_position_sync_timer );
1555
1559
} else {
1556
- // If we are still detecting the protcol and we get here but the door state is not valid, reset the protocol.
1557
- if (g_status .protocol == GDO_PROTOCOL_SEC_PLUS_V1 &&
1558
- g_status .door == GDO_DOOR_STATE_UNKNOWN &&
1559
- gdo_sync_task_handle ) {
1560
- g_status .protocol = 0 ;
1561
- }
1562
1560
return ;
1563
1561
}
1564
1562
@@ -1622,7 +1620,7 @@ static void update_door_state(const gdo_door_state_t door_state) {
1622
1620
}
1623
1621
1624
1622
if (g_status .door == GDO_DOOR_STATE_UNKNOWN &&
1625
- g_status .protocol == GDO_PROTOCOL_SEC_PLUS_V1 &&
1623
+ g_status .protocol & GDO_PROTOCOL_SEC_PLUS_V1 &&
1626
1624
gdo_sync_task_handle ) {
1627
1625
xTaskNotifyGive (gdo_sync_task_handle );
1628
1626
}
@@ -1675,7 +1673,7 @@ inline static esp_err_t get_openings() {
1675
1673
*/
1676
1674
inline static esp_err_t send_door_action (gdo_door_action_t action ) {
1677
1675
esp_err_t err = ESP_OK ;
1678
- if (g_status .protocol == GDO_PROTOCOL_SEC_PLUS_V1 ) {
1676
+ if (g_status .protocol & GDO_PROTOCOL_SEC_PLUS_V1 ) {
1679
1677
return gdo_v1_toggle_cmd (V1_CMD_TOGGLE_DOOR_PRESS , 500000 );
1680
1678
} else {
1681
1679
err = queue_command (GDO_CMD_DOOR_ACTION , action , 1 , 1 );
0 commit comments