請(qǐng)問 SDK有提供 停止廣播的接口嗎
從機(jī)可以在連接成功之前就設(shè)置好連接超時(shí)時(shí)間嗎。
?demo是在連接成功后,在更新連接參數(shù)中修改連接超時(shí)時(shí)間。
請(qǐng)問 SDK有提供 停止廣播的接口嗎
從機(jī)可以在連接成功之前就設(shè)置好連接超時(shí)時(shí)間嗎。
?demo是在連接成功后,在更新連接參數(shù)中修改連接超時(shí)時(shí)間。
開啟廣播 ??
?uint8 initial_advertising_enable = TRUE;
???
??? // Set the GAP Role Parameters
??? GAPRole_SetParameter( GAPROLE_ADVERT_ENABLED, sizeof( uint8 ), &initial_advertising_enable );
關(guān)閉廣播 ??
?uint8 initial_advertising_enable = FALSE;
???
??? // Set the GAP Role Parameters
??? GAPRole_SetParameter( GAPROLE_ADVERT_ENABLED, sizeof( uint8 ), &initial_advertising_enable );
連接超時(shí),
// Supervision timeout value (units of 10ms, 100=1s)
#define DEFAULT_DESIRED_CONN_TIMEOUT????????? 100
這個(gè)定義是連接以后,斷連狀態(tài)產(chǎn)生的超時(shí)時(shí)間。
你如果想控制廣播時(shí)間,你可以另外加定時(shí)任務(wù)進(jìn)行管理,到時(shí)間開啟或者關(guān)閉廣播。