RealtimeCompLab2
Dependencies: mbed
Fork of PPP-Blinky by
main.cpp@142:54d1543e23e5, 2017-08-28 (annotated)
- Committer:
- nixnax
- Date:
- Mon Aug 28 18:47:48 2017 +0000
- Revision:
- 142:54d1543e23e5
- Parent:
- 141:4cc1518ee06f
- Child:
- 144:01d98cf7738e
Documentation, restructure, comments.
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
nixnax | 142:54d1543e23e5 | 1 | /** @file ppp-blinky.cpp */ |
nixnax | 81:9ede60e9a2c8 | 2 | #include "mbed.h" |
nixnax | 142:54d1543e23e5 | 3 | #include "ppp-blinky.h" |
nixnax | 9:0992486d4a30 | 4 | |
nixnax | 142:54d1543e23e5 | 5 | // PPP-Blinky - "The Most Basic Internet Of a Thing" |
nixnax | 81:9ede60e9a2c8 | 6 | |
nixnax | 0:2cf4880c312a | 7 | int main() |
nixnax | 0:2cf4880c312a | 8 | { |
nixnax | 142:54d1543e23e5 | 9 | initialize(); // initialize the serial port(s) and structures |
nixnax | 0:2cf4880c312a | 10 | while(1) { |
nixnax | 142:54d1543e23e5 | 11 | scanForConnectString(); // wait for PC to send a connect message |
nixnax | 142:54d1543e23e5 | 12 | while( connected() ) { |
nixnax | 142:54d1543e23e5 | 13 | waitForPppFrame(); // process PPP frames until we receive a disconnect command |
nixnax | 81:9ede60e9a2c8 | 14 | } |
nixnax | 142:54d1543e23e5 | 15 | } |
nixnax | 105:45001195b325 | 16 | } |