This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

CC2540广播频率为20ms时,反复修改广播内容当广播,一段时间出现不广播现象。

Other Parts Discussed in Thread: CC2540

CC2540广播频率为20ms时,反复修改广播内容当广播,一段时间出现不广播,此时其他工作正常就是没有广播信息....重启后又正常?
还有就是这个支持最快的广播频率是多少呢? 更改广播是在中断内部更改的并更改前已加上

current_adv_enabled_status = FALSE;
GAPRole_SetParameter( GAPROLE_ADVERT_ENABLED, sizeof( uint8 ), &current_adv_enabled_status );

GAPRole_GetParameter( GAPROLE_ADVERT_ENABLED, &current_adv_enabled_status );
while( current_adv_enabled_status == TRUE );

更改后

current_adv_enabled_status = TRUE;
GAPRole_SetParameter( GAPROLE_ADVERT_ENABLED, sizeof( uint8 ), &current_adv_enabled_status );

请大神赐教