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@1:5614b8b6163f, 2020-11-27 (annotated)
- Committer:
- stonegarden
- Date:
- Fri Nov 27 02:16:12 2020 +0000
- Revision:
- 1:5614b8b6163f
- Parent:
- 0:879aa9d0247b
UART
Who changed what in which revision?
| User | Revision | Line number | New contents of line |
|---|---|---|---|
| mbed_official | 0:879aa9d0247b | 1 | #include "mbed.h" |
| stonegarden | 1:5614b8b6163f | 2 | |
| stonegarden | 1:5614b8b6163f | 3 | Serial pc(PD_5, PD_6,9600); |
| stonegarden | 1:5614b8b6163f | 4 | |
| stonegarden | 1:5614b8b6163f | 5 | |
| stonegarden | 1:5614b8b6163f | 6 | |
| stonegarden | 1:5614b8b6163f | 7 | int main() |
| stonegarden | 1:5614b8b6163f | 8 | { |
| stonegarden | 1:5614b8b6163f | 9 | pc.printf("Nucleo_Test_UART_NBIoT\r\n"); |
| stonegarden | 1:5614b8b6163f | 10 | |
| stonegarden | 1:5614b8b6163f | 11 | while(1) |
| stonegarden | 1:5614b8b6163f | 12 | { |
| stonegarden | 1:5614b8b6163f | 13 | pc.printf("Nucleo_Test_UART_NBIoT\r\n"); |
| stonegarden | 1:5614b8b6163f | 14 | |
| stonegarden | 1:5614b8b6163f | 15 | } |
| stonegarden | 1:5614b8b6163f | 16 | } |