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
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 initializePpp(); // initialize the serial port(s) and PPP structure 00010 while(1) { 00011 waitForPcConnectString(); // wait for PC to send a connect message 00012 00013 // main loop 00014 while( connectedPpp() ) { 00015 waitForPppFrame(); // process PPP frames until we receive a disconnect command 00016 } 00017 00018 } 00019 }
Generated on Thu Jul 14 2022 20:53:47 by
1.7.2