cc3000 driver with expanded buffers.

Fork of cc3000_hostdriver_mbedsocket by Martin Kojtal

Files at this revision

API Documentation at this revision

Comitter:
heroic
Date:
Mon May 05 01:44:25 2014 +0000
Parent:
49:0400c0aeba7f
Child:
51:a3f8d6de71b4
Commit message:
Slow down cc3000 spi because the lpc134x is crap and doesn't have GPDMA.

Changed in this revision

cc3000_spi.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/cc3000_spi.cpp	Sun May 04 10:20:19 2014 +0000
+++ b/cc3000_spi.cpp	Mon May 05 01:44:25 2014 +0000
@@ -47,7 +47,7 @@
   : _wlan_irq(cc3000_irq), _wlan_en(cc3000_en), _wlan_cs(cc3000_cs), _wlan_spi(cc3000_spi), _event(event), _simple_link(simple_link) {
 
     _wlan_spi.format(8,1);
-    _wlan_spi.frequency(16000000);
+    _wlan_spi.frequency(12000000);
     _wlan_irq.fall(this, &cc3000_spi::WLAN_IRQHandler);
 
     _wlan_en = 0;