mirror of
https://github.com/espressif/esp-protocols.git
synced 2025-07-05 06:36:32 +02:00
24 lines
424 B
C++
24 lines
424 B
C++
![]() |
//
|
||
|
// Created by david on 3/8/21.
|
||
|
//
|
||
|
|
||
|
#include "cxx_include/esp_modem_dce_module.hpp"
|
||
|
|
||
|
command_result SIM7600::get_module_name(std::string& name)
|
||
|
{
|
||
|
name = "7600";
|
||
|
return command_result::OK;
|
||
|
}
|
||
|
|
||
|
command_result SIM800::get_module_name(std::string& name)
|
||
|
{
|
||
|
name = "800L";
|
||
|
return command_result::OK;
|
||
|
}
|
||
|
|
||
|
command_result BG96::get_module_name(std::string& name)
|
||
|
{
|
||
|
name = "BG96";
|
||
|
return command_result::OK;
|
||
|
}
|