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.
check_revision.cpp
- Committer:
- kenjiArai
- Date:
- 2019-08-17
- Revision:
- 3:4d7be22641c1
- Child:
- 4:6d6ea85642ed
File content as of revision 3:4d7be22641c1:
/*
* Check Mbed revision
*
* Copyright (c) 2019 Kenji Arai / JH1PJL
* http://www.page.sannet.ne.jp/kenjia/index.html
* https://os.mbed.com/users/kenjiArai/
* Created: July 17th, 2019
* Revised: August 17th, 2019
*/
#include "mbed.h"
// RUN ONLY ON mbed-os5.13.3
// https://github.com/ARMmbed/mbed-os/releases/tag/mbed-os-5.13.3
#if (MBED_MAJOR_VERSION == 5) &&\
(MBED_MINOR_VERSION == 13) &&\
(MBED_PATCH_VERSION == 2) // Don't set 3 but 2 as of Aug. 17th, 2019
#else
//#warning "Please use Mbed-os5.13.3"
#error "Please use Mbed-os5.13.3"
#endif