FM-test

Dependencies:   MODSERIAL mbed-rtos mbed

Fork of Master by Ohnishi_Gundan

bluetooth.h

Committer:
9uS7
Date:
2014-09-11
Revision:
0:4f07ba929908
Child:
1:e1cfb5850088

File content as of revision 0:4f07ba929908:

#ifndef _INC_MY_BLUETOOTH
#define _INC_MY_BLUETOOTH

#include "mbed.h"

typedef union _cvt{
    char byte[4];
    int in;
    float fl;    
} Cvt;

Serial btMaster(p13, p14);  // tx, rx

void btSetupMaster(void);
void btSetupSlave(void);

#endif