Cellular: fix for binary compability requirement for CY8CKIT_062_4343W

pull/9746/head
Jari Poyhonen 2019-02-20 10:03:34 +02:00
parent b0c7c266c6
commit 7a195ae227
1 changed files with 8 additions and 8 deletions

View File

@ -334,14 +334,6 @@ public:
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 requested interface type or NULL if this class doesn't implement the interface.
*/
@ -410,6 +402,14 @@ public:
* configuration).
*/
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