feat(esp_modem): Add optional ACT to operator-name

Closes https://github.com/espressif/esp-protocols/issues/80
This commit is contained in:
David Cermak
2022-07-11 21:03:55 +02:00
parent 9c3e24b6cf
commit a286634359
5 changed files with 34 additions and 4 deletions
@@ -104,6 +104,15 @@ public:
pdp = std::move(new_pdp);
}
/**
* @brief Simplified version of operator name (without the ACT, which is included in the command library)
*/
command_result get_operator_name(std::string& name)
{
int dummy_act;
return get_operator_name(name, dummy_act);
}
/**
* @brief Common DCE commands generated from the API AT list
*/