Serial_HelloWorld Example for WIZwiki-W7500
Dependencies: mbed
Fork of Serial_HelloWorld_Mbed by
Prerequisite
This example is to check a serial communication with a PC
To implement this function, you need a Platform board.
Below are what we used.
- WIZwiki-W7500 from WIZnet (Platform board)
Hardware Configuration
WIZwiki-W7500 Pin map
Software
main.cpp
#include "mbed.h" Serial pc(USBTX, USBRX); // tx, rx int main() { pc.printf("Hello World!\n\r"); while(1) { pc.putc(pc.getc() + 1); // echo input back to terminal } }
History
fix
2015-06-29, by justinkim [Mon, 29 Jun 2015 04:02:22 +0000] rev 3
fix
Added license to main.c file.
2015-03-27, by mbedAustin [Fri, 27 Mar 2015 20:16:23 +0000] rev 2
Added license to main.c file.
updated mbed library
2014-09-21, by mbedAustin [Sun, 21 Sep 2014 05:44:05 +0000] rev 1
updated mbed library
Serial HelloWorld
2013-02-12, by mbed_official [Tue, 12 Feb 2013 17:39:05 +0000] rev 0
Serial HelloWorld