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.
main.cpp
- Committer:
- mudassar0121
- Date:
- 2017-08-10
- Revision:
- 0:de3ecaf69571
File content as of revision 0:de3ecaf69571:
#include "mbed.h"
#ifdef TARGET_UBLOX_C027
//#include "C027_api.h"
#else
#error "This example is targeted for the C027 platform"
#endif
DigitalOut myled(LED);
int main()
{
while(1)
{
myled = !myled;
wait(0.2);
}
}