Navigation Menu

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cellular: not-supported error if MODEM_ON_BOARD not defined #4672

Merged
merged 1 commit into from Jul 4, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -14,7 +14,9 @@
* limitations under the License.
*/

#if MODEM_ON_BOARD
#if !MODEM_ON_BOARD
#error [NOT_SUPPORTED] MODEM_ON_BOARD should be set for this test to be functional
#endif

#include "mbed.h"
#include "gmd_ut_config_header.h"
Expand Down Expand Up @@ -436,14 +438,3 @@ static void unlock()
{
mtx.unlock();
}

#else

int main ()
{
return 0;
}

#endif //MODEM_ON_BOARD
// End Of File