Doxygen update, missing class definitions from AT_ classes.

pull/6082/head
Teppo Järvelin 2018-02-19 13:40:40 +02:00 committed by Ari Parkkila
parent f2613a6154
commit 3ff131be0a
9 changed files with 39 additions and 3 deletions

View File

@ -24,7 +24,7 @@ namespace mbed {
/**
* Class CellularPower
*
* An abstract interface for connecting to a network and getting information from it.
* An interface that provides power handling functions for modem/module.
*/
class CellularPower
{

View File

@ -38,7 +38,7 @@ const int SMS_ERROR_MULTIPART_ALL_PARTS_NOT_READ = -5001;
/**
* Class CellularSMS
*
* An abstract interface for SMS sending and reading.
* An abstract interface for SMS sending, reading and deleting.
*/
class CellularSMS
{

View File

@ -31,6 +31,12 @@
namespace mbed {
/**
* Class AT_CellularDevice
*
* A class defines opening and closing of cellular interfaces.
* Deleting/Closing of opened interfaces can be done only via this class.
*/
class AT_CellularDevice : public CellularDevice
{
public:
@ -132,7 +138,7 @@ public: // CellularDevice
* @return network stack
*/
virtual NetworkStack *get_stack();
protected:
AT_CellularNetwork *_network;
AT_CellularSMS *_sms;

View File

@ -23,6 +23,11 @@
namespace mbed {
/**
* Class AT_CellularInformation
*
* Class that provides information about cellular device.
*/
class AT_CellularInformation : public CellularInformation, public AT_CellularBase
{
public:

View File

@ -23,6 +23,11 @@
namespace mbed {
/**
* Class AT_CellularMultiplexer
*
* Class that provides a way to start multiplexer mode in modem.
*/
class AT_CellularMultiplexer : public CellularMultiplexer, public AT_CellularBase
{
public:

View File

@ -26,6 +26,11 @@ namespace mbed {
#define AT_NETWORK_TRIALS 5
/**
* Class AT_CellularNetwork
*
* Class for connecting to a network and getting information from it.
*/
class AT_CellularNetwork : public CellularNetwork, public AT_CellularBase
{

View File

@ -23,6 +23,11 @@
namespace mbed {
/**
* Class AT_CellularPower
*
* Class that provides power handling functions for modem/module.
*/
class AT_CellularPower : public CellularPower, public AT_CellularBase
{
public:

View File

@ -23,6 +23,11 @@
namespace mbed {
/**
* Class AT_CellularSIM
*
* Class for SIM card handling.
*/
class AT_CellularSIM : public CellularSIM, public AT_CellularBase
{

View File

@ -25,6 +25,11 @@
namespace mbed {
/**
* Class AT_CellularSMS
*
* Class for SMS sending, reading and deleting.
*/
class AT_CellularSMS: public CellularSMS, public AT_CellularBase
{