Add: sim7070 support

This commit is contained in:
Sjur G. Wroldsen
2022-04-13 13:42:57 +02:00
parent d3f7ea67fb
commit bb7f198bea
9 changed files with 44 additions and 3 deletions

View File

@ -57,7 +57,12 @@ command_result SIM7600::get_battery_status(int &voltage, int &bcs, int &bcl)
command_result SIM7600::power_down()
{
return dce_commands::power_down_sim7xxx(dte.get());
return dce_commands::power_down_sim7600(dte.get());
}
command_result SIM7070::power_down()
{
return dce_commands::power_down_sim7070(dte.get());
}
command_result SIM800::power_down()