LAB10_Oppgave2
Dependencies: mbed
Fork of LAB10_Oppgave2 by
main.cpp@0:1fe30bae9dc1, 2015-11-04 (annotated)
- Committer:
- rlanghbv
- Date:
- Wed Nov 04 18:56:08 2015 +0000
- Revision:
- 0:1fe30bae9dc1
- Child:
- 1:c3e8496642b4
first comit
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
rlanghbv | 0:1fe30bae9dc1 | 1 | #include "mbed.h" |
rlanghbv | 0:1fe30bae9dc1 | 2 | |
rlanghbv | 0:1fe30bae9dc1 | 3 | Serial pc(USBTX, USBRX); |
rlanghbv | 0:1fe30bae9dc1 | 4 | |
rlanghbv | 0:1fe30bae9dc1 | 5 | int main() { |
rlanghbv | 0:1fe30bae9dc1 | 6 | while (1) { |
rlanghbv | 0:1fe30bae9dc1 | 7 | pc.putc(pc.getc()); |
rlanghbv | 0:1fe30bae9dc1 | 8 | } |
rlanghbv | 0:1fe30bae9dc1 | 9 | } |
rlanghbv | 0:1fe30bae9dc1 | 10 | |
rlanghbv | 0:1fe30bae9dc1 | 11 | |
rlanghbv | 0:1fe30bae9dc1 | 12 |