sketching up the command library

This commit is contained in:
David Cermak
2021-03-02 21:01:44 +01:00
parent a9a00387cc
commit 00662fcaea
3 changed files with 57 additions and 1 deletions

View File

@ -0,0 +1,19 @@
//
// Created by david on 3/2/21.
//
#ifndef SIMPLE_CXX_CLIENT_ESP_MODEM_COMMANDS_HPP
#define SIMPLE_CXX_CLIENT_ESP_MODEM_COMMANDS_HPP
#include "esp_err.h"
namespace esp_modem {
namespace dce_commands {
template <typename T> esp_err_t sync(T t);
} // dce_commands
} // esp_modem
#endif //SIMPLE_CXX_CLIENT_ESP_MODEM_COMMANDS_HPP