Lab2_web / Mbed 2 deprecated webserverBlinky

Dependencies:   mbed

Fork of webserverBlinky by RealTimeCompLab2

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers main.cpp Source File

main.cpp

00001 /** @file ppp-blinky.cpp */
00002 #include "mbed.h"
00003 #include "ppp-blinky.h"
00004 
00005 // PPP-Blinky - "The Most Basic Internet Thing"
00006 
00007 int main()
00008 {
00009 //    int i =1;
00010     initializePpp(); // initialize the serial port(s) and structures
00011 //    l_on();
00012     while(1) {
00013        waitForPcConnectString(); // wait for PC to send a connect message
00014 //        l_off();
00015         while( connectedPpp() ) {
00016             
00017             waitForPppFrame(); // process PPP frames until we receive a disconnect command
00018         }
00019     
00020     } 
00021 }