mbedの"myBlueUSB"でBluetooth Spp接続する時、複数のBluetooth機器がONしているとうまく接続できないことがあります。
この現象は、"TestShell.cpp"の73行目を以下のように修正すると対策できます。
// if (devs[i]->_handle == 0 && memcmp(devs[i]->_info.dev_class, FtDevClass, 3)==0) {
if (devs[i]->_handle == 0) {
―以上―
mbedの"myBlueUSB"でBluetooth Spp接続する時、複数のBluetooth機器がONしているとうまく接続できないことがあります。
この現象は、"TestShell.cpp"の73行目を以下のように修正すると対策できます。
// if (devs[i]->_handle == 0 && memcmp(devs[i]->_info.dev_class, FtDevClass, 3)==0) {
if (devs[i]->_handle == 0) {
―以上―