Added DEBUG around string

This commit is contained in:
Kristian Lauszus 2012-10-07 15:22:29 +02:00
parent ebb333de9a
commit a6d77dce92

View file

@ -476,7 +476,7 @@ void BTD::HCI_event_task() {
case EV_ENCRYPTION_CHANGE: case EV_ENCRYPTION_CHANGE:
case EV_READ_REMOTE_VERSION_INFORMATION_COMPLETE: case EV_READ_REMOTE_VERSION_INFORMATION_COMPLETE:
break; break;
#ifdef EXTRADEBUG #ifdef EXTRADEBUG
default: default:
if(hcibuf[0] != 0x00) { if(hcibuf[0] != 0x00) {
Notify(PSTR("\r\nUnmanaged HCI Event: ")); Notify(PSTR("\r\nUnmanaged HCI Event: "));
@ -667,7 +667,9 @@ void BTD::HCI_task() {
#endif #endif
l2capConnectionClaimed = false; l2capConnectionClaimed = false;
if(strncmp((const char *)remote_name, "Nintendo", 8) == 0) { if(strncmp((const char *)remote_name, "Nintendo", 8) == 0) {
Serial.print("\r\nWiimote is connecting"); #ifdef DEBUG
Notify(PSTR("\r\nWiimote is connecting"));
#endif
incomingWii = true; incomingWii = true;
} }
hci_event_flag = 0; hci_event_flag = 0;