Dependencies: mbed-src
Fork of ex7_Bluetooth_HC-06_CMD by
Diff: main.cpp
- Revision:
- 0:a4c1f76c9564
- Child:
- 1:b976dec64b41
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/main.cpp Wed Jul 01 03:23:26 2015 +0000 @@ -0,0 +1,52 @@ +/** + ****************************************************************************** + * @project HC-05_HelloWorld_WIZwiki-W7500 + * @author WIZnet + * @version V1.0.0 + * @date 01-JUL-2015 + * @brief Main program +******************************************************************************* +**/ + +/* Includes ------------------------------------------------------------------*/ +#include "mbed.h" + +/* Private typedef -----------------------------------------------------------*/ +/* Private define ------------------------------------------------------------*/ +/* Private variables ---------------------------------------------------------*/ +Serial pc(USBTX, USBRX); +Serial bt(PA_14, PA_13); + +/* Private function prototypes -----------------------------------------------*/ + +/* Private functions ---------------------------------------------------------*/ +/** + * @brief Main Function + * @param None + * @retval None + */ +int main(void) +{ + char ch; + pc.baud(115200); + bt.baud(115200); + pc.printf("Hello World!\n\r"); + bt.printf("Hello World!\r\n"); + + while(1) + { + if(bt.readable()) + { + ch=bt.getc(); + pc.printf("%c",ch); + bt.printf("%c",ch); + } + + else if(pc.readable()) + { + ch=pc.getc(); + bt.printf("%c",ch); + pc.printf("%c",ch); + } + } +}