Skip to content

Commit

Permalink
Merge pull request #128 from kivaisan/fix_iar_print_5_12
Browse files Browse the repository at this point in the history
Fix PLMN trace for IAR
  • Loading branch information
Kimmo Vaisanen authored Mar 21, 2019
2 parents dfaa031 + e86b774 commit cea8b78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ int main()
print_function("\n\nmbed-os-example-cellular\n");
print_function("\n\nBuilt: %s, %s\n", __DATE__, __TIME__);
#ifdef MBED_CONF_NSAPI_DEFAULT_CELLULAR_PLMN
print_function("\n\n[MAIN], plmn: %s\n", MBED_CONF_NSAPI_DEFAULT_CELLULAR_PLMN);
print_function("\n\n[MAIN], plmn: %s\n", (MBED_CONF_NSAPI_DEFAULT_CELLULAR_PLMN ? MBED_CONF_NSAPI_DEFAULT_CELLULAR_PLMN : "NULL"));
#endif

print_function("Establishing connection\n");
Expand Down

0 comments on commit cea8b78

Please sign in to comment.