Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Revision 20:29257dc4c7aa, committed 2019-02-23
- Comitter:
- WiredHome
- Date:
- Sat Feb 23 18:01:39 2019 +0000
- Parent:
- 19:00af774c9b72
- Commit message:
- Modify return code on failure to indicate the cause.
Changed in this revision
NWSWeather.cpp | Show annotated file Show diff for this revision Revisions of this file |
--- a/NWSWeather.cpp Sat Feb 23 16:48:49 2019 +0000 +++ b/NWSWeather.cpp Sat Feb 23 18:01:39 2019 +0000 @@ -131,7 +131,7 @@ } } else { WARN("get returned %d, no response?", ret); - retCode = noresponse; + retCode = (NWSReturnCode_T)ret; // return code from get also indicates type of error // noresponse; break; } } else {