Renaud Fivet / Mbed 2 deprecated uptime

Dependencies:   mbed

Fork of hello by Renaud Fivet

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers uptime.cpp Source File

uptime.cpp

00001 /* uptime -- logs the number of seconds past since startup */
00002 
00003 #include "mbed.h"
00004 
00005 int main() {
00006     int secs ;
00007 
00008     for( secs = 1 ;; secs += 1) {
00009         wait( 1) ;
00010         printf( "uptime: %d seconds\n", secs) ;
00011     }
00012 
00013     return EXIT_SUCCESS ;   /* never reach here */
00014 }