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: MODSERIAL mbed-rtos mbed
Fork of Master by
bluetooth.cpp
- Committer:
- 9uS7
- Date:
- 2014-09-11
- Revision:
- 0:4f07ba929908
- Child:
- 1:e1cfb5850088
File content as of revision 0:4f07ba929908:
#include "mbed.h"
#include "bluetooth.h"
void btSetupMaster(void) //setup master
{
btMaster.baud(9600);
btMaster.printf("$$$");
wait(0.5);
btMaster.printf("C\r");
wait(0.5);
}
void btSetupSlave(void)
{
}
