mirror of https://github.com/ARMmbed/mbed-os.git
Cellular: fix for binary compability requirement for CY8CKIT_062_4343W
parent
b0c7c266c6
commit
7a195ae227
|
@ -334,14 +334,6 @@ public:
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Return pointer to a CellularInterface.
|
|
||||||
* @return Pointer to requested interface type or NULL if this class doesn't implement the interface.
|
|
||||||
*/
|
|
||||||
virtual CellularInterface *cellularInterface()
|
|
||||||
{
|
|
||||||
return 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Return pointer to an EMACInterface.
|
/** Return pointer to an EMACInterface.
|
||||||
* @return Pointer to requested interface type or NULL if this class doesn't implement the interface.
|
* @return Pointer to requested interface type or NULL if this class doesn't implement the interface.
|
||||||
*/
|
*/
|
||||||
|
@ -410,6 +402,14 @@ public:
|
||||||
* configuration).
|
* configuration).
|
||||||
*/
|
*/
|
||||||
virtual void set_default_parameters();
|
virtual void set_default_parameters();
|
||||||
|
|
||||||
|
/** Return pointer to a CellularInterface.
|
||||||
|
* @return Pointer to requested interface type or NULL if this class doesn't implement the interface.
|
||||||
|
*/
|
||||||
|
virtual CellularInterface *cellularInterface()
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue