remove debugging printf's
This commit is contained in:
parent
f66f55b4ed
commit
50641c4152
|
@ -211,7 +211,7 @@ STATIC void characteristic_on_ble_evt(ble_evt_t *ble_evt, void *param) {
|
|||
|
||||
// For debugging.
|
||||
default:
|
||||
mp_printf(&mp_plat_print, "Unhandled characteristic event: 0x%04x\n", ble_evt->header.evt_id);
|
||||
// mp_printf(&mp_plat_print, "Unhandled characteristic event: 0x%04x\n", ble_evt->header.evt_id);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
@ -268,7 +268,8 @@ STATIC void peripheral_on_ble_evt(ble_evt_t *ble_evt, void *self_in) {
|
|||
}
|
||||
|
||||
default:
|
||||
mp_printf(&mp_plat_print, "Unhandled peripheral event: 0x%04x\n", ble_evt->header.evt_id);
|
||||
// For debugging.
|
||||
// mp_printf(&mp_plat_print, "Unhandled peripheral event: 0x%04x\n", ble_evt->header.evt_id);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue