mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-02 16:20:31 +00:00
use hci_transport_h4_iphone_instance if power management is supported (iOS4+ and Broadcom)
This commit is contained in:
parent
2ad598b442
commit
3803bc4580
14
src/daemon.c
14
src/daemon.c
@ -677,11 +677,21 @@ int main (int argc, char * const * argv){
|
|||||||
bt_control_t * control = NULL;
|
bt_control_t * control = NULL;
|
||||||
|
|
||||||
#ifdef HAVE_TRANSPORT_H4
|
#ifdef HAVE_TRANSPORT_H4
|
||||||
transport = hci_transport_h4_instance();
|
|
||||||
config.device_name = UART_DEVICE;
|
config.device_name = UART_DEVICE;
|
||||||
config.baudrate_init = UART_SPEED;
|
config.baudrate_init = UART_SPEED;
|
||||||
config.baudrate_main = 0;
|
config.baudrate_main = 0;
|
||||||
config.flowcontrol = 1;
|
config.flowcontrol = 1;
|
||||||
|
#if defined(USE_BLUETOOL) && defined(USE_POWERMANAGEMENT)
|
||||||
|
if (bt_control_iphone_power_management_supported()){
|
||||||
|
// use default (max) UART baudrate over netraph interface
|
||||||
|
config.baudrate_init = 0;
|
||||||
|
transport = hci_transport_h4_iphone_instance();
|
||||||
|
} else {
|
||||||
|
transport = hci_transport_h4_instance();
|
||||||
|
}
|
||||||
|
#else
|
||||||
|
transport = hci_transport_h4_instance();
|
||||||
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef HAVE_TRANSPORT_USB
|
#ifdef HAVE_TRANSPORT_USB
|
||||||
@ -694,7 +704,7 @@ int main (int argc, char * const * argv){
|
|||||||
|
|
||||||
#if defined(USE_BLUETOOL) && defined(USE_POWERMANAGEMENT)
|
#if defined(USE_BLUETOOL) && defined(USE_POWERMANAGEMENT)
|
||||||
if (bt_control_iphone_power_management_supported()){
|
if (bt_control_iphone_power_management_supported()){
|
||||||
hci_transport_h4_set_enforce_wake_device("/dev/btwake");
|
hci_transport_h4_iphone_set_enforce_wake_device("/dev/btwake");
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user