mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-20 05:52:22 +02:00
Added the missing definition for the esp_modem_set_baud function (IDFGH-9181) (#209)
fix(esp_modem): Added the missing definition for the esp_modem_set_baud function
This commit is contained in:
@ -418,3 +418,8 @@ extern "C" esp_err_t esp_modem_command(esp_modem_dce_t *dce_wrap, const char *co
|
|||||||
}
|
}
|
||||||
}, timeout_ms));
|
}, timeout_ms));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
extern "C" esp_err_t esp_modem_set_baud(esp_modem_dce_t *dce_wrap, int baud)
|
||||||
|
{
|
||||||
|
return command_response_to_esp_err(dce_wrap->dce->set_baud(baud));
|
||||||
|
}
|
||||||
|
Reference in New Issue
Block a user