fix(modem): Fixed set_pdp_context() command timeout

Closes https://github.com/espressif/esp-protocols/issues/455
This commit is contained in:
David Cermak
2023-12-08 09:11:00 +01:00
parent 82c2cf8936
commit 1d80cbc179
4 changed files with 17 additions and 4 deletions

View File

@ -55,6 +55,7 @@ command_result power_down_sim70xx(CommandableIf *t);
command_result set_network_bands_sim76xx(CommandableIf *t, const std::string &mode, const int *bands, int size);
command_result power_down_sim8xx(CommandableIf *t);
command_result set_data_mode_sim8xx(CommandableIf *t);
command_result set_pdp_context(CommandableIf *t, PdpContext &pdp, uint32_t timeout_ms);
/**
* @}

View File

@ -170,6 +170,8 @@ public:
*/
class BG96: public GenericModule {
using GenericModule::GenericModule;
public:
command_result set_pdp_context(PdpContext &pdp) override;
};
/**