mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-04-16 08:42:28 +00:00
wiced: don't init WIFI automatically
This commit is contained in:
parent
d8f374f670
commit
f27f89f93b
@ -43,7 +43,7 @@
|
|||||||
|
|
||||||
#include "platform_bluetooth.h"
|
#include "platform_bluetooth.h"
|
||||||
#include "wiced.h"
|
#include "wiced.h"
|
||||||
|
#include "platform/wwd_platform_interface.h"
|
||||||
|
|
||||||
// see generated_mac_address.txt - "macaddr=02:0A:F7:3d:76:be"
|
// see generated_mac_address.txt - "macaddr=02:0A:F7:3d:76:be"
|
||||||
static const char * wifi_mac_address = NVRAM_GENERATED_MAC_ADDRESS;
|
static const char * wifi_mac_address = NVRAM_GENERATED_MAC_ADDRESS;
|
||||||
@ -53,7 +53,7 @@ static btstack_packet_callback_registration_t hci_event_callback_registration;
|
|||||||
static const hci_transport_config_uart_t hci_transport_config_uart = {
|
static const hci_transport_config_uart_t hci_transport_config_uart = {
|
||||||
HCI_TRANSPORT_CONFIG_UART,
|
HCI_TRANSPORT_CONFIG_UART,
|
||||||
115200,
|
115200,
|
||||||
0, // 3000000,
|
0,
|
||||||
1,
|
1,
|
||||||
NULL,
|
NULL,
|
||||||
};
|
};
|
||||||
@ -69,8 +69,11 @@ static void packet_handler (uint8_t packet_type, uint16_t channel, uint8_t *pack
|
|||||||
|
|
||||||
void application_start(void){
|
void application_start(void){
|
||||||
|
|
||||||
/* Initialise the WICED device */
|
/* Initialise the WICED device without WLAN */
|
||||||
wiced_init();
|
wiced_core_init();
|
||||||
|
|
||||||
|
/* 32 kHz clock also needed for Bluetooth */
|
||||||
|
host_platform_init_wlan_powersave_clock();
|
||||||
|
|
||||||
printf("BTstack on WICED\n");
|
printf("BTstack on WICED\n");
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user