Browse Source

BT - set some pointers to NULL and verbose

main
Kurt Eckhardt 5 years ago
parent
commit
652f2aa264
2 changed files with 4 additions and 4 deletions
  1. +3
    -3
      USBHost_t36.h
  2. +1
    -1
      bluetooth.cpp

+ 3
- 3
USBHost_t36.h View File

// your best effort to read chapter 4 before asking USB questions! // your best effort to read chapter 4 before asking USB questions!




//#define USBHOST_PRINT_DEBUG
#define USBHOST_PRINT_DEBUG


/************************************************/ /************************************************/
/* Data Types */ /* Data Types */
virtual void hid_input_end(); virtual void hid_input_end();
virtual void disconnect_collection(Device_t *dev); virtual void disconnect_collection(Device_t *dev);
void add_to_list(); void add_to_list();
USBHIDInput *next;
USBHIDInput *next = NULL;
friend class USBHIDParser; friend class USBHIDParser;
protected: protected:
Device_t *mydevice = NULL; Device_t *mydevice = NULL;
virtual bool process_bluetooth_HID_data(const uint8_t *data, uint16_t length) {return false;} virtual bool process_bluetooth_HID_data(const uint8_t *data, uint16_t length) {return false;}
virtual void release_bluetooth() {}; virtual void release_bluetooth() {};
void add_to_list(); void add_to_list();
BTHIDInput *next;
BTHIDInput *next = NULL;
friend class BluetoothController; friend class BluetoothController;
protected: protected:
Device_t *btdevice = NULL; Device_t *btdevice = NULL;

+ 1
- 1
bluetooth.cpp View File

#define println USBHost::println_ #define println USBHost::println_


#define DEBUG_BT #define DEBUG_BT
//#define DEBUG_BT_VERBOSE
#define DEBUG_BT_VERBOSE


#ifndef DEBUG_BT #ifndef DEBUG_BT
#undef DEBUG_BT_VERBOSE #undef DEBUG_BT_VERBOSE

Loading…
Cancel
Save