2021-03-29 19:34:45 +02:00
|
|
|
// Copyright 2021 Espressif Systems (Shanghai) PTE LTD
|
2021-03-07 19:43:45 +01:00
|
|
|
//
|
2021-03-29 19:34:45 +02:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2021-03-07 19:43:45 +01:00
|
|
|
//
|
2021-03-29 19:34:45 +02:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2021-03-07 19:43:45 +01:00
|
|
|
|
2021-03-29 19:34:45 +02:00
|
|
|
#include "cxx_include/esp_modem_api.hpp"
|
2021-03-07 19:43:45 +01:00
|
|
|
#include "cxx_include/esp_modem_dce_module.hpp"
|
2021-03-24 21:06:27 +01:00
|
|
|
#include "generate/esp_modem_command_declare.inc"
|
2021-03-07 19:43:45 +01:00
|
|
|
|
2021-03-29 19:34:45 +02:00
|
|
|
namespace esp_modem {
|
|
|
|
|
|
|
|
GenericModule::GenericModule(std::shared_ptr<DTE> dte, const dce_config *config) :
|
2021-03-28 13:38:20 +02:00
|
|
|
dte(std::move(dte)), pdp(std::make_unique<PdpContext>(config->apn)) {}
|
|
|
|
|
|
|
|
|
2021-03-24 21:06:27 +01:00
|
|
|
#define ARGS0
|
|
|
|
#define ARGS1 , x
|
2021-03-30 08:25:16 +02:00
|
|
|
#define ARGS2 , x , y
|
2021-03-24 21:06:27 +01:00
|
|
|
#define _ARGS(x) ARGS ## x
|
|
|
|
#define ARGS(x) _ARGS(x)
|
|
|
|
#define TEMPLATE_ARG
|
2021-04-15 14:59:30 +02:00
|
|
|
#define ESP_MODEM_DECLARE_DCE_COMMAND(name, return_type, arg_nr, ...) \
|
2021-03-24 21:06:27 +01:00
|
|
|
return_type GenericModule::name(__VA_ARGS__) { return esp_modem::dce_commands::name(dte.get() ARGS(arg_nr) ); }
|
|
|
|
|
2021-03-29 19:34:45 +02:00
|
|
|
DECLARE_ALL_COMMAND_APIS(return_type name(...) {
|
|
|
|
forwards
|
|
|
|
to
|
|
|
|
esp_modem::dce_commands::name(...)
|
|
|
|
})
|
2021-03-24 21:06:27 +01:00
|
|
|
|
|
|
|
#undef ESP_MODEM_DECLARE_DCE_COMMAND
|
|
|
|
|
|
|
|
|
2021-03-29 19:34:45 +02:00
|
|
|
command_result SIM7600::get_module_name(std::string &name) {
|
2021-03-28 20:22:44 +02:00
|
|
|
name = "7600";
|
|
|
|
return command_result::OK;
|
|
|
|
}
|
2021-03-07 19:43:45 +01:00
|
|
|
|
2021-03-29 19:34:45 +02:00
|
|
|
command_result SIM800::get_module_name(std::string &name) {
|
2021-03-07 19:43:45 +01:00
|
|
|
name = "800L";
|
|
|
|
return command_result::OK;
|
|
|
|
}
|
|
|
|
|
2021-03-29 19:34:45 +02:00
|
|
|
command_result BG96::get_module_name(std::string &name) {
|
2021-03-07 19:43:45 +01:00
|
|
|
name = "BG96";
|
|
|
|
return command_result::OK;
|
|
|
|
}
|
2021-03-29 19:34:45 +02:00
|
|
|
|
|
|
|
}
|