remove debugging printf's

This commit is contained in:
Dan Halbert 2019-01-08 15:52:21 -05:00
parent f66f55b4ed
commit 50641c4152
2 changed files with 3 additions and 2 deletions

View File

@ -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;
}

View File

@ -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;
}
}