Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: WiFiDip-KitchenSink WiFiDip-UsbKitchenSink WiFiDipCortexSensor WifiDipCortex-UDPDemo
Fork of cc3000_hostdriver_mbedsocket by
Diff: cc3000_event.cpp
- Revision:
- 22:d23c59fec0dc
- Parent:
- 21:30b6ed7bf8fd
- Child:
- 26:456f73ed2a75
diff -r 30b6ed7bf8fd -r d23c59fec0dc cc3000_event.cpp --- a/cc3000_event.cpp Thu Oct 03 17:15:45 2013 +0200 +++ b/cc3000_event.cpp Thu Oct 03 20:56:45 2013 +0000 @@ -44,7 +44,7 @@ namespace mbed_cc3000 { -#if CC3000_DEBUG == 1 +#ifdef CC3000_DEBUG_HCI_RX const char *HCI_EVENT_STR[] = { "Socket", @@ -178,7 +178,7 @@ static void hci_event_debug_print(uint16_t hciEventNo) { -#if CC3000_DEBUG == 1 +#ifdef CC3000_DEBUG_HCI_RX if ((hciEventNo > HCI_CMND_SOCKET_BASE) && ( hciEventNo <= HCI_CMND_MDNS_ADVERTISE)) { DBG_HCI("Event Received : 0x%04X - %s", hciEventNo, HCI_EVENT_STR[hciEventNo-HCI_CMND_SOCKET]);