mirror of https://github.com/ARMmbed/mbed-os.git
Doxygen update, missing class definitions from AT_ classes.
parent
f2613a6154
commit
3ff131be0a
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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
|
||||
{
|
||||
|
||||
|
|
|
|||
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -23,6 +23,11 @@
|
|||
|
||||
namespace mbed {
|
||||
|
||||
/**
|
||||
* Class AT_CellularSIM
|
||||
*
|
||||
* Class for SIM card handling.
|
||||
*/
|
||||
class AT_CellularSIM : public CellularSIM, public AT_CellularBase
|
||||
{
|
||||
|
||||
|
|
|
|||
|
|
@ -25,6 +25,11 @@
|
|||
|
||||
namespace mbed {
|
||||
|
||||
/**
|
||||
* Class AT_CellularSMS
|
||||
*
|
||||
* Class for SMS sending, reading and deleting.
|
||||
*/
|
||||
class AT_CellularSMS: public CellularSMS, public AT_CellularBase
|
||||
{
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue