Type1LD Evaluation Board Quick Start Guide
Page 10
5. Notes when using external 32k XTAL
If the BT application is not running with external 32k xtal, 32k xtal’s initialization process may need to be
added on BT application.
5.1. Change the application source
A) Open the application source
Example: 43xxx_Wi-Fi\apps\test\bt_mfg_test\bt_mfg_test.c
B) Confirm whether “wiced_init()” is called
If “wiced_init()” is called in “application_start()” , no need to add anything.
If “wiced_init()” is not called, do [ C). Add the function call ] as below.
C) Add the function call
Add below two lines at “application_start()” function.
“#include "platform/wwd_platform_interface.h" and “host_platform_init_wlan_powersave_clock();”
#include "platform/wwd_platform_interface.h"
////
void application_start( )
{
/* Initialise WICED */
wiced_core_init( );
host_platform_init_wlan_powersave_clock();
/* Enter BT manufacturing test mode */
bt_mfgtest_start( &stdio_config );
}
5.2. Re-build the application and confirm the application running
(END)