None

Fork of cc3000_hostdriver_mbedsocket by Martin Kojtal

Files at this revision

API Documentation at this revision

Comitter:
JackB
Date:
Fri Oct 16 23:23:11 2015 +0000
Parent:
45:50ab13d8f2dc
Child:
50:64f025c8d3e3
Commit message:
Trying with Nucleo F446RE (no luck)

Changed in this revision

cc3000.h Show annotated file Show diff for this revision Revisions of this file
cc3000_common.h Show annotated file Show diff for this revision Revisions of this file
--- a/cc3000.h	Wed Nov 06 17:56:25 2013 +0100
+++ b/cc3000.h	Fri Oct 16 23:23:11 2015 +0000
@@ -55,13 +55,13 @@
 
 /** Enable debug messages - set 1  */
 // Debug - Socket interface messages
-#define CC3000_DEBUG_SOCKET 0
+#define CC3000_DEBUG_SOCKET 1
 // Debug - HCI TX messages
-#define CC3000_DEBUG_HCI_TX 0
+#define CC3000_DEBUG_HCI_TX 1
 // Debug - HCI Rx messages
-#define CC3000_DEBUG_HCI_RX 0
+#define CC3000_DEBUG_HCI_RX 1
 // Debug - General Debug
-#define CC3000_DEBUG        0
+#define CC3000_DEBUG        1
 // Add colour to the debug messages, requires a VT100 terminal like putty, comment out to remove
 #define VT100_COLOUR        0
 
--- a/cc3000_common.h	Wed Nov 06 17:56:25 2013 +0100
+++ b/cc3000_common.h	Fri Oct 16 23:23:11 2015 +0000
@@ -80,8 +80,8 @@
   The 1 is used for the overrun detection
 */
 
-#define CC3000_MINIMAL_RX_SIZE      (118 + 1)
-#define CC3000_MAXIMAL_RX_SIZE      (511 + 1)
+#define CC3000_MINIMAL_RX_SIZE      (1520 + 1)
+#define CC3000_MAXIMAL_RX_SIZE      (1520 + 1)
 
 /*Defines for minimal and maximal TX buffer size.
   This buffer is used for sending events and data.
@@ -102,8 +102,8 @@
 
   The 1 is used for the overrun detection */
 
-#define CC3000_MINIMAL_TX_SIZE      (118 + 1)
-#define CC3000_MAXIMAL_TX_SIZE      (1519 + 1)
+#define CC3000_MINIMAL_TX_SIZE      (1520 + 1)
+#define CC3000_MAXIMAL_TX_SIZE      (1520 + 1)
 
 //TX and RX buffer size - allow to receive and transmit maximum data at lengh 8.
 #ifdef CC3000_TINY_DRIVER