请问 SDK有提供 停止广播的接口吗
从机可以在连接成功之前就设置好连接超时时间吗。
demo是在连接成功后,在更新连接参数中修改连接超时时间。
请问 SDK有提供 停止广播的接口吗
从机可以在连接成功之前就设置好连接超时时间吗。
demo是在连接成功后,在更新连接参数中修改连接超时时间。
开启广播
uint8 initial_advertising_enable = TRUE;
// Set the GAP Role Parameters
GAPRole_SetParameter( GAPROLE_ADVERT_ENABLED, sizeof( uint8 ), &initial_advertising_enable );
关闭广播
uint8 initial_advertising_enable = FALSE;
// Set the GAP Role Parameters
GAPRole_SetParameter( GAPROLE_ADVERT_ENABLED, sizeof( uint8 ), &initial_advertising_enable );
连接超时,
// Supervision timeout value (units of 10ms, 100=1s)
#define DEFAULT_DESIRED_CONN_TIMEOUT 100
这个定义是连接以后,断连状态产生的超时时间。
你如果想控制广播时间,你可以另外加定时任务进行管理,到时间开启或者关闭广播。