X_NUCLEO_IDB0XA1

Dependents:   BLE_HeartRate_IDB0XA1

Fork of X_NUCLEO_IDB0XA1 by ST

Files at this revision

API Documentation at this revision

Comitter:
wlmattos
Date:
Mon Sep 05 21:58:55 2016 +0000
Parent:
252:0c2cb16a7166
Commit message:
errors fixed.

Changed in this revision

source/bluenrg-hci/hci/hci.c Show annotated file Show diff for this revision Revisions of this file
diff -r 0c2cb16a7166 -r 2b7e9cb7d5c1 source/bluenrg-hci/hci/hci.c
--- a/source/bluenrg-hci/hci/hci.c	Mon Jun 27 15:51:20 2016 +0200
+++ b/source/bluenrg-hci/hci/hci.c	Mon Sep 05 21:58:55 2016 +0000
@@ -32,7 +32,10 @@
 
 #define HCI_LOG_ON 0
 
-#define HCI_READ_PACKET_NUM_MAX 		 (0x40)
+//#define HCI_READ_PACKET_NUM_MAX 		 (0x40) ALTW - 05-09-16
+
+
+#define HCI_READ_PACKET_NUM_MAX (0x5)
 
 #define MIN(a,b)            ((a) < (b) )? (a) : (b)
 #define MAX(a,b)            ((a) > (b) )? (a) : (b)