![](/media/cache/img/default_profile.jpg.50x50_q85.jpg)
Hello this is a test!
main.cpp@0:6021732dc364, 2015-04-17 (annotated)
- Committer:
- jamessayer
- Date:
- Fri Apr 17 16:16:51 2015 +0000
- Revision:
- 0:6021732dc364
test
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
jamessayer | 0:6021732dc364 | 1 | #include "mbed.h" |
jamessayer | 0:6021732dc364 | 2 | #ifdef TARGET_UBLOX_C027 |
jamessayer | 0:6021732dc364 | 3 | #include "C027_api.h" |
jamessayer | 0:6021732dc364 | 4 | #else |
jamessayer | 0:6021732dc364 | 5 | #error "This example is targeted for the C027 platform" |
jamessayer | 0:6021732dc364 | 6 | #endif |
jamessayer | 0:6021732dc364 | 7 | |
jamessayer | 0:6021732dc364 | 8 | DigitalOut myled(LED); |
jamessayer | 0:6021732dc364 | 9 | |
jamessayer | 0:6021732dc364 | 10 | int main() { |
jamessayer | 0:6021732dc364 | 11 | while(1) { |
jamessayer | 0:6021732dc364 | 12 | myled = !myled; |
jamessayer | 0:6021732dc364 | 13 | wait(0.2); |
jamessayer | 0:6021732dc364 | 14 | } |
jamessayer | 0:6021732dc364 | 15 | } |