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.
Dependencies: TextLCD USBDevice mbed
Fork of USBSerial_HelloWorld by
main.cpp@0:a3e641b0dfc2, 2011-11-11 (annotated)
- Committer:
- samux
- Date:
- Fri Nov 11 09:05:53 2011 +0000
- Revision:
- 0:a3e641b0dfc2
- Child:
- 4:95c491d36524
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| samux | 0:a3e641b0dfc2 | 1 | #include "mbed.h" |
| samux | 0:a3e641b0dfc2 | 2 | #include "USBSerial.h" |
| samux | 0:a3e641b0dfc2 | 3 | |
| samux | 0:a3e641b0dfc2 | 4 | //Virtual serial port over USB |
| samux | 0:a3e641b0dfc2 | 5 | USBSerial serial; |
| samux | 0:a3e641b0dfc2 | 6 | |
| samux | 0:a3e641b0dfc2 | 7 | int main(void) { |
| samux | 0:a3e641b0dfc2 | 8 | |
| samux | 0:a3e641b0dfc2 | 9 | while(1) |
| samux | 0:a3e641b0dfc2 | 10 | { |
| samux | 0:a3e641b0dfc2 | 11 | serial.printf("I am a virtual serial port\r\n"); |
| samux | 0:a3e641b0dfc2 | 12 | wait(1); |
| samux | 0:a3e641b0dfc2 | 13 | } |
| samux | 0:a3e641b0dfc2 | 14 | } |
