Skip to content

Commit

Permalink
Merge branch 'master' into secplus.timing
Browse files Browse the repository at this point in the history
  • Loading branch information
descipher authored Oct 10, 2024
2 parents eb4c25e + 98a9a02 commit cafca55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gdo.c
Original file line number Diff line number Diff line change
Expand Up @@ -775,7 +775,7 @@ esp_err_t gdo_set_close_duration(uint16_t ms) {
* @return ESP_OK on success, ESP_ERR_INVALID_ARG if the time is invalid.
*/
esp_err_t gdo_set_min_command_interval(uint32_t ms) {
if (ms < 50) {
if (ms < 300) {
ESP_LOGE(TAG, "Invalid minimum command interval: %" PRIu32, ms);
return ESP_ERR_INVALID_ARG;
}
Expand Down

0 comments on commit cafca55

Please sign in to comment.