Important changes to forums and questions
All forums and questions are now archived. To start a new conversation or read the latest updates go to forums.mbed.com.
11 years, 7 months ago.
BT - data received issues
- include "mbed.h"
- include "BluetoothBee.h"
BluetoothBee b(p9,p10); Serial pc(USBTX, USBRX);
int main() { b.setup(); printf("setup done\n"); while (1) { b.printf("BTBEE\n"); printf("data sent \n"); wait(10); } return 0; }
Connection gets setup with PC. Data is getting sent and received, but I am seeing garbage on received end. Emulator has been configured for 38400 as suggested.
Ideas?