ble nano hid over gatt

Dependencies:   BLE_API mbed-dev nRF51822

Revision:
40:364deaa190fe
Parent:
30:f9ebc769118d
Child:
42:2c3be8694896
--- a/keymap.h	Fri Aug 26 15:39:03 2016 +0000
+++ b/keymap.h	Fri Aug 26 16:03:18 2016 +0000
@@ -36,10 +36,10 @@
 		uint8_t key = KEYMAP_DEFINITION[row][col];
 		if (key) {
 			if (pressed) {
-				printf("D %x\r\n", key);
+				// printf("D %x\r\n", key);
 				HIDController::appendReportData(key);
 			} else {
-				printf("U %x\r\n", key);
+				// printf("U %x\r\n", key);
 				HIDController::deleteReportData(key);
 			}
 		}