uint8 bond_cnt=0;
uint8_t buf[6];
uint16_t a=GAPRole_GetParameter(GAPBOND_BOND_COUNT, &bond_cnt);
PRINT("ret value %d \r\n",a);
返回a的值永远是2,参数错误。。核对过了参数没错。。。
GAPBondMgr_SetParameter( GAPBOND_BOND_COUNT, sizeof ( uint8 ), &bond_cnt );
GAPBondMgr_SetParameter( GAPBOND_ERASE_AUTO, sizeof ( uint8 ), &bond_cnt );
这两api都不生效
GAPBondMgr_SetParameter( GAPBOND_ERASE_ALLBONDS, 0, 0 );删除所有绑定的都不生效。。