浏览代码

Turn off Debug (Serial1 and Bluetooth)

Turn off the debug support, so if pulled in to Master other users can use it without needing to setup Serial1
main
Kurt Eckhardt 5 年前
父节点
当前提交
3e9c534193
共有 2 个文件被更改,包括 3 次插入3 次删除
  1. +1
    -1
      USBHost_t36.h
  2. +2
    -2
      bluetooth.cpp

+ 1
- 1
USBHost_t36.h 查看文件

@@ -58,7 +58,7 @@


//#define USBHOST_PRINT_DEBUG
#define USBHDBGSerial Serial1
//#define USBHDBGSerial Serial1


#ifndef USBHDBGSerial

+ 2
- 2
bluetooth.cpp 查看文件

@@ -30,7 +30,7 @@
#define print USBHost::print_
#define println USBHost::println_//#define DEBUG_BT

#define DEBUG_BT
//#define DEBUG_BT
#define DEBUG_BT_VERBOSE

#ifndef DEBUG_BT
@@ -802,7 +802,7 @@ void BluetoothController::handle_hci_connection_complete() {
// 03 0b 04 00 00 40 25 00 58 4b 00 01 00
device_connection_handle_ = rxbuf_[3]+ (uint16_t)(rxbuf_[4]<<8);
DBGPrintf(" Connection Complete - ST:%x LH:%x\n", rxbuf_[2], device_connection_handle_);
if (do_pair_device_) {
if (do_pair_device_ && !(device_driver_ && (device_driver_->special_process_required & BTHIDInput::SP_DONT_NEED_CONNECT))) {
sendHCIAuthenticationRequested();
pending_control_ = PC_AUTHENTICATION_REQUESTED;
} else if (device_driver_ && (device_driver_->special_process_required & BTHIDInput::SP_NEED_CONNECT)) {

正在加载...
取消
保存