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: mbed-src
Fork of ex7_Bluetooth_HC-06_CMD by
Diff: main.cpp
- Revision:
- 1:b976dec64b41
- Parent:
- 0:a4c1f76c9564
- Child:
- 2:f2444ffbc022
diff -r a4c1f76c9564 -r b976dec64b41 main.cpp
--- a/main.cpp Wed Jul 01 03:23:26 2015 +0000
+++ b/main.cpp Tue Oct 17 04:08:56 2017 +0000
@@ -1,37 +1,14 @@
-/**
- ******************************************************************************
- * @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);
+Serial bt(D1, D0);
-/* 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");
+ pc.baud(9600);
+ bt.baud(9600);
+ pc.printf("Hello World! HC-06 bluetooth example...\n\r");
while(1)
{
@@ -39,14 +16,12 @@
{
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);
}
}
}
